view test/runtime/6929067/T.java @ 20737:75430ce42425

8054883: Segmentation error while running program Summary: Fix pattern matching of range check Reviewed-by: kvn
author iveresov
date Wed, 13 Aug 2014 17:37:11 -0700
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");
  }
}