-
Bug
-
Resolution: Fixed
-
P5
-
6
The output from -Xprint option is not correct:
$ cat > Test.java
class Test<A,B,C> {}
$ javac -Xprint Test.java
package unnamed package;
class Test<ABC> {
Test();
}
$
Notice that there are no commas between ABC.
$ cat > Test.java
class Test<A,B,C> {}
$ javac -Xprint Test.java
package unnamed package;
class Test<ABC> {
Test();
}
$
Notice that there are no commas between ABC.