view test/runtime/6929067/T.java @ 4626:ee91624e54e6

Fix checkcast type in polymorphic inlining
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 17 Feb 2012 12:37:17 +0100
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");
  }
}