JavaCompilerCore/resources/bytecode/javFiles/Annotation.jav
Daniel Holle 2cb84f9e2b
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m33s
Ignore annotations in STG, fix #288
2024-03-13 11:29:17 +01:00

8 lines
120 B
Java

class Base {
public void foo() {}
}
public class Annotation extends Base {
@Override
public void foo() {}
}