jjg@904: /* jjg@904: * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. jjg@904: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@904: * jjg@904: * This code is free software; you can redistribute it and/or modify it jjg@904: * under the terms of the GNU General Public License version 2 only, as jjg@904: * published by the Free Software Foundation. jjg@904: * jjg@904: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@904: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@904: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@904: * version 2 for more details (a copy is included in the LICENSE file that jjg@904: * accompanied this code). jjg@904: * jjg@904: * You should have received a copy of the GNU General Public License version jjg@904: * 2 along with this work; if not, write to the Free Software Foundation, jjg@904: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@904: * jjg@904: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@904: * or visit www.oracle.com if you need additional information or have any jjg@904: * questions. jjg@904: */ jjg@904: jjg@904: /* jjg@904: * @test jjg@904: * @bug 6639645 jjg@904: * @summary Modeling type implementing missing interfaces jjg@904: * @library ../../../../lib jjg@904: * @clean MissingGenericClass2 jjg@904: * @build JavacTestingAbstractProcessor Generator jjg@904: * @compile -XprintRounds -processor Generator TestMissingGenericClass2.java jjg@904: * @run main TestMissingGenericClass2 jjg@904: */ jjg@904: jjg@904: public class TestMissingGenericClass2 extends MissingGenericClass2 { jjg@904: public static void main(String... args) { jjg@904: new TestMissingGenericClass2().run(); jjg@904: } jjg@904: }