langtools/test/tools/javac/InterfaceMemberClassModifiers.out
author jlahoda
Tue, 16 Aug 2016 16:43:00 +0200
changeset 40504 0a01f6710c84
parent 10 06bc494ca11e
permissions -rw-r--r--
8078561: Error message should be generated once when -source 6 is specified Summary: Code to avoid duplicated errors about features not supported in the current source level moved to Log Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
InterfaceMemberClassModifiers.java:28: illegal combination of modifiers: public and protected
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
    protected class SomeClass3 implements InterfaceMemberClassModifiers {       // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
              ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
InterfaceMemberClassModifiers.java:34: illegal combination of modifiers: public and private
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
    private class SomeClass4 implements InterfaceMemberClassModifiers {         // illegal
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
            ^
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
2 errors