Skip to content

Instantly share code, notes, and snippets.

Created December 21, 2016 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/5784e7ea0d24deb3182cd57449c3f1b7 to your computer and use it in GitHub Desktop.
Save anonymous/5784e7ea0d24deb3182cd57449c3f1b7 to your computer and use it in GitHub Desktop.
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