Advertisement
dginz

Untitled

Mar 2nd, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class X {
  2. public static void main(String[] args) {
  3. X.<Boolean>hello("hello");
  4. }
  5.  
  6. public static <T> void hello(Object x) {
  7. Object ignored = (T)x;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement