blob: 8e522414cac507a2b79e970e3a1e19f94278ea08 [file] [log] [blame]
public class ThisReferenceTest {
public static void main(String[] args) {
try {
new ThisReferenceTest().foo();
} catch (NullPointerException e) {
}
}
public void foo() {
Nested other = null;
other.bar(this, 2L);
}
public static class Nested {
public void bar(ThisReferenceTest other, long l) {
}
}
}