Description
The following program:
class Test {
Object o = #;
}
generates the following error:
Test.java:983: error: illegal character: \35
Object o = #;
^
1 error
It would be nice if, instead of '\35' javac reported '#'.
class Test {
Object o = #;
}
generates the following error:
Test.java:983: error: illegal character: \35
Object o = #;
^
1 error
It would be nice if, instead of '\35' javac reported '#'.