Advertisement
Guest User

Java compiler bug?

a guest
Oct 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. import java.util.function.Predicate;
  2.  
  3. public class Main {
  4.     static Predicate<String> p = s -> true;
  5.  
  6.     public static void main(String[] args) {
  7.         System.out.println(p);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement