view test/runtime/6929067/T.java @ 23855:dceb9ec3b9b9

8147567: InterpreterRuntime::post_field_access not updated for boolean in JDK-8132051 Reviewed-by: coleenp
author kevinw
date Tue, 19 Jan 2016 15:35:12 +0000
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");
  }
}