fernflower/testData/results/TestLineNumbersMatch.dec

23 lines
330 B
Plaintext
Raw Normal View History

package pkg;
class TestLineNumbersMatch {
void m1(boolean b) {
if(b) {
System.out.println("a");
} else {
System.out.println("b");
} }
void m2() {
(new Runnable() {
public void run() {
System.out.println("run with me");
}
}).run();
}
}