blob: 4e0e9886a23b67bdff3f47f75d7f825759f3d14a [file] [log] [blame]
package c10;
/* Test case for bug 43276 How to search for implicit constructors */
class X {
class Inner {
}
}
class B extends X.Inner {
B() {
new X().super();
}
}