17 lines
255 B
Plaintext
17 lines
255 B
Plaintext
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
|