OpenJDK / loom / loom
changeset 17865:0052c3c499ed
8015803: Test8015436.java fails 'can not access a member of class Test8015436 with modifiers "public static"'
Summary: Newly added test has an issue: the main class must be public
Reviewed-by: kvn, jbachorik, coleenp
Contributed-by: serguei.spitsyn@oracle.com
author | sspitsyn |
---|---|
date | Tue, 04 Jun 2013 01:06:50 -0700 |
parents | 29aa71317b51 |
children | 78ed1b8dafe2 a309214b7a18 |
files | hotspot/test/compiler/8015436/Test8015436.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/test/compiler/8015436/Test8015436.java Mon Jun 03 14:28:37 2013 -0700 +++ b/hotspot/test/compiler/8015436/Test8015436.java Tue Jun 04 01:06:50 2013 -0700 @@ -48,7 +48,7 @@ } } -class Test8015436 implements InterfaceWithDefaultMethod { +public class Test8015436 implements InterfaceWithDefaultMethod { @Override public void someMethod() { System.out.println("someMethod() invoked");