langtools/test/com/sun/javadoc/testLambdaFeature/pkg1/FuncInf.java
changeset 23799 daa645653200
parent 19912 4b1a79163f9c
equal deleted inserted replaced
23798:ca0f80391182 23799:daa645653200
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 package pkg1;
    24 package pkg1;
    25 
    25 
       
    26 @FunctionalInterface
    26 public interface FuncInf<V> {
    27 public interface FuncInf<V> {
    27 
    28 
    28     V call() throws Exception;
    29     V call() throws Exception;
    29 }
    30 }