2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-07 20:39:31 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2014-07-14 10:02:58 +00:00
|
|
|
* @bug 1265387 8048805
|
2007-12-01 00:00:00 +00:00
|
|
|
* @summary ''' and '\u0027' are not legal char literals.
|
|
|
|
* @author turnidge
|
|
|
|
*
|
2014-07-07 20:39:31 +00:00
|
|
|
* @compile/fail/ref=TripleQuote.out -XDrawDiagnostics TripleQuote.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public
|
|
|
|
class TripleQuote {
|
|
|
|
char c = '\u0027';
|
2014-07-07 20:39:31 +00:00
|
|
|
char d = ''';
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|