Created
December 21, 2016 08:27
-
-
Save anonymous/5784e7ea0d24deb3182cd57449c3f1b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Test{ | |
@interface var{} | |
public var a = function(); | |
class function implements java.util.function.Supplier<Integer>{ | |
@Override | |
public Integer get(){ | |
return 2; | |
} | |
} | |
public static void main(String[] args){ | |
System.out.println(new Test().a); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment