fixed incorrect constructor method reference

This commit is contained in:
Egor.Ushakov
2017-04-26 13:26:10 +03:00
parent 7575bb57de
commit 8c440e281c
5 changed files with 43 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
public class TestConstructorReference {
void boo() {
Runnable aNew = TestConstructorReference::new;// 22
}// 23
}
class 'TestConstructorReference' {
method 'boo ()V' {
5 2
6 3
}
}
Lines mapping:
22 <-> 3
23 <-> 4