jjg@1521: /* jjg@1521: * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. jjg@1521: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1521: * jjg@1521: * This code is free software; you can redistribute it and/or modify it jjg@1521: * under the terms of the GNU General Public License version 2 only, as jjg@1521: * published by the Free Software Foundation. jjg@1521: * jjg@1521: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1521: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1521: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1521: * version 2 for more details (a copy is included in the LICENSE file that jjg@1521: * accompanied this code). jjg@1521: * jjg@1521: * You should have received a copy of the GNU General Public License version jjg@1521: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1521: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1521: * jjg@1521: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1521: * or visit www.oracle.com if you need additional information or have any jjg@1521: * questions. jjg@1521: */ jjg@1521: jjg@1521: // key: compiler.err.cant.annotate.static.class jjg@1521: jjg@1521: import java.lang.annotation.*; jjg@1521: jjg@1521: class CantAnnotateStaticClass { jjg@1521: @Target(ElementType.TYPE_USE) jjg@1521: @interface A {} jjg@1521: jjg@1521: static class Outer { jjg@1521: class Inner {} jjg@1521: } jjg@1521: jjg@1521: // Error: jjg@1521: @A Outer.Inner f; jjg@1521: jjg@1521: // OK: jjg@1521: @A Outer g; jjg@1521: }