Guest User

Untitled

a guest
Aug 13th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public abstract interface Test
  2. {
  3. public abstract void a();
  4.  
  5. public abstract void b();
  6.  
  7. @Metadata(mv={1, 1, 2}, bv={1, 0, 1}, k=3)
  8. public static final class DefaultImpls
  9. {
  10. public static void b(Test $this)
  11. {
  12. String str = "hi";System.out.println(str);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment