You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }