JavaCompilerCore/resources/bytecode/javFiles/Bug333.jav
Daniel Holle 974582f7e5
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 5m57s
Fix #333
2024-05-17 10:49:45 +02:00

11 lines
158 B
Java

import java.lang.String;
public class Bug333 {
public static String Bar = "Bar";
}
class Bar {
public bar() {
String s = Bug333.Bar;
}
}