blob: 5c3cd06b58961b5e7c8c8a9dafbc941d93ea01bf [file] [log] [blame]
public class A {
@org.jetbrains.annotations.TestOnly
public void foo() {}
@org.jetbrains.annotations.TestOnly
public void test() {
new Runnable() {
public void run() {
foo();
}
};
}
public void production() {
new Runnable() {
public void run() {
foo();
}
};
}
}