Files
openide/java/java-tests/testData/refactoring/extractMethod/SameAnnotations_after.java
2016-11-21 17:09:15 +01:00

21 lines
273 B
Java

class C {
{
newMethod();
}
void f() {
newMethod();
}
private void newMethod() {
@A int j = 0;
System.out.println(j);
}
void g() {
newMethod();
}
}
@interface A {
String value() default "asdf";
}