decompiler: major line numbers fixes
This commit is contained in:
19
testData/src/pkg/TestThrowException.java
Normal file
19
testData/src/pkg/TestThrowException.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package pkg;
|
||||
|
||||
import java.lang.Override;
|
||||
import java.lang.Runnable;
|
||||
|
||||
public class TestThrowException {
|
||||
Runnable r;
|
||||
public TestThrowException(int a) {
|
||||
if (a > 0) {
|
||||
throw new IllegalArgumentException("xxx");
|
||||
}
|
||||
r = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
int a = 5;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user