1136N/A/*
1136N/A * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
1136N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1136N/A *
1136N/A * This code is free software; you can redistribute it and/or modify it
1136N/A * under the terms of the GNU General Public License version 2 only, as
1136N/A * published by the Free Software Foundation. Oracle designates this
1136N/A * particular file as subject to the "Classpath" exception as provided
1136N/A * by Oracle in the LICENSE file that accompanied this code.
1136N/A *
1136N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1136N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1136N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1136N/A * version 2 for more details (a copy is included in the LICENSE file that
1136N/A * accompanied this code).
1136N/A *
1136N/A * You should have received a copy of the GNU General Public License version
1136N/A * 2 along with this work; if not, write to the Free Software Foundation,
1136N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1136N/A *
1136N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1136N/A * or visit www.oracle.com if you need additional information or have any
1136N/A * questions.
1136N/A */
1136N/A
1136N/A/* @test
1136N/A * @bug 7129225
1136N/A * @summary import xxx.* isn't handled correctly by annotation processing
1136N/A * @library ../lib
1136N/A * @build JavacTestingAbstractProcessor
1136N/A * @compile/fail/ref=NegTest.ref -XDrawDiagnostics TestImportStar.java
1136N/A * @compile Anno.java AnnoProcessor.java
1136N/A * @compile/ref=TestImportStar.ref -XDrawDiagnostics -processor AnnoProcessor -proc:only TestImportStar.java
1136N/A */
1136N/A
1136N/A //The @compile/fail... verifies that the fix doesn't break the normal compilation of import xxx.*
1136N/A //The @comple/ref... verifies the fix fixes the bug
1136N/A
1136N/Aimport xxx.*;
1136N/A
1136N/A@Anno
1136N/Apublic class TestImportStar {
1136N/A}