220N/A/*
2362N/A * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
220N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
220N/A *
220N/A * This code is free software; you can redistribute it and/or modify it
220N/A * under the terms of the GNU General Public License version 2 only, as
220N/A * published by the Free Software Foundation.
220N/A *
220N/A * This code is distributed in the hope that it will be useful, but WITHOUT
220N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
220N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
220N/A * version 2 for more details (a copy is included in the LICENSE file that
220N/A * accompanied this code).
220N/A *
220N/A * You should have received a copy of the GNU General Public License version
220N/A * 2 along with this work; if not, write to the Free Software Foundation,
220N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
220N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
220N/A */
220N/A
220N/A/**
220N/A * @test
220N/A * @bug 6435291
220N/A * @summary javac shouldn't throw NPE while compiling invalid RuntimeInvisibleParameterAnnotations
220N/A * @author Wei Tao
220N/A * @run main/othervm T6435291
220N/A */
220N/A
220N/Aimport com.sun.tools.javac.api.JavacTaskImpl;
220N/Aimport com.sun.tools.javac.jvm.ClassReader.BadClassFile;
220N/Aimport com.sun.tools.javac.main.JavaCompiler;
220N/Aimport javax.tools.ToolProvider;
220N/A
220N/Apublic class T6435291 {
220N/A public static void main(String... args) {
220N/A javax.tools.JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
220N/A JavacTaskImpl task = (JavacTaskImpl)tool.getTask(null, null, null, null, null, null);
220N/A JavaCompiler compiler = JavaCompiler.instance(task.getContext());
220N/A try {
220N/A compiler.resolveIdent("T").complete();
220N/A } catch (BadClassFile e) {
220N/A System.err.println("Passed: expected completion failure " + e.getClass().getName());
220N/A return;
220N/A } catch (Exception e) {
220N/A throw new RuntimeException("Failed: unexpected exception");
220N/A }
220N/A throw new RuntimeException("Failed: no error reported");
220N/A }
220N/A}
220N/A