aoqi@0: /* aoqi@0: * @test /nodynamiccopyright/ aoqi@0: * @bug 6946618 aoqi@0: * @summary sqe test fails: javac/generics/NewOnTypeParm in pit jdk7 b91 in all platforms. aoqi@0: * @author mcimadamore aoqi@0: * @compile/fail/ref=T6946618a.out -XDrawDiagnostics T6946618a.java aoqi@0: */ aoqi@0: aoqi@0: class T6946618a { aoqi@0: static class C { aoqi@0: T makeT() { aoqi@0: return new T(); //error aoqi@0: } aoqi@0: } aoqi@0: aoqi@0: static class D { aoqi@0: C makeC() { aoqi@0: return new C(); //ok aoqi@0: } aoqi@0: } aoqi@0: }