langtools/test/tools/javac/lambda/SerializedLambdaInInit.java
changeset 28592 4f1da6e809b0
parent 16337 181ac468ab24
equal deleted inserted replaced
28591:25f1384324ae 28592:4f1da6e809b0
   109             if (!Character.isJavaIdentifierPart(ch)) {
   109             if (!Character.isJavaIdentifierPart(ch)) {
   110                 throw new IllegalArgumentException(str + ": bad identifier character: '" + ch + "'");
   110                 throw new IllegalArgumentException(str + ": bad identifier character: '" + ch + "'");
   111             }
   111             }
   112         }
   112         }
   113     }
   113     }
       
   114 
       
   115     interface LSI extends Serializable {
       
   116         String convert(String x);
       
   117     }
   114 }
   118 }
   115 
       
   116 interface LSI extends Serializable {
       
   117     String convert(String x);
       
   118 }