You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
341 B
20 lines
341 B
7 years ago
|
package pkg;
|
||
|
|
||
|
class TestSuperInner extends TestSuperInnerBase {
|
||
|
protected abstract class Inner2 extends TestSuperInnerBase.Inner {
|
||
|
protected Inner2() {
|
||
|
super();// 4
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class 'pkg/TestSuperInner$Inner2' {
|
||
|
method '<init> (Lpkg/TestSuperInner;)V' {
|
||
|
7 5
|
||
|
a 6
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Lines mapping:
|
||
|
4 <-> 6
|