Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/AnonymousClass.java
T
2019-04-03 11:24:19 +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());
}
};
}
}