view test/runtime/6929067/T.java @ 12131:91b93f523ec6

8012294: remove generic handling for default methods Reviewed-by: kamg, coleenp
author acorn
date Mon, 26 Aug 2013 11:35:25 -0400
parents 3b3d12e645e7
children
line wrap: on
line source

public class T
{
  public static boolean foo(boolean bar)
  {
    return bar;
  }

  public static void printIt()
  {
    System.out.println("Hello");
  }
}