test/tools/javac/ClassToTypeParm.java

Print this page

        

@@ -25,11 +25,11 @@
  * @test
  * @bug 4948144
  * @summary Generics: assignment of Class to type parm's default should elicit error
  * @author never
  *
- * @compile/fail -source 1.5 ClassToTypeParm.java
+ * @compile/fail ClassToTypeParm.java
  */
 
 class ClassToTypeParm<T> {
     void f(Class c) {
         T t = c;