Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/AnonymousClass.java
T
2015-09-25 13:02:46 +03:00

15 lines
281 B
Java
Vendored

public class X {
void foo() {
Runnable runnable = new Runnable() {
int f = 10;
int getValue() { return f; }
@Override
public void run() {
System.out.println(getValue());
}
};
}
}