view test/runtime/6929067/T.java @ 20557:a477f1af1bac

8058919: Add sanity test for minimal VM in test/Makefile Reviewed-by: twisti, kvn, coleenp
author dholmes
date Tue, 23 Sep 2014 21:33:58 -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");
  }
}