mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
protected constructor in the anonymous' base class may lead to recursive hierarchy build GitOrigin-RevId: 3c03c12ad6bf0d9cdf1480daa93f36ef5448a803
8 lines
84 B
Java
8 lines
84 B
Java
package c;
|
|
import a.*;
|
|
|
|
class Test {
|
|
{
|
|
Base<String> b = new Base<>() {};
|
|
}
|
|
} |