選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PR558.java 249B

1234567
  1. /** @testcase PR#558 class name for identifier as String should provoke error */
  2. public class PR558 {
  3. public static void main( String args[] ) {
  4. new StringBuffer().append(PR558); // expecting compiler error that PR558 is a bad symbol
  5. }
  6. }