java-decompiler: line numbers matching test
This commit is contained in:
22
testData/results/TestLineNumbersMatch.dec
Normal file
22
testData/results/TestLineNumbersMatch.dec
Normal file
@@ -0,0 +1,22 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user