test/tools/javac/diags/examples/CantAnnotateScoping1.java

Tue, 15 Oct 2013 15:57:13 -0700

author
jjg
date
Tue, 15 Oct 2013 15:57:13 -0700
changeset 2134
b0c086cd4520
parent 1521
test/tools/javac/diags/examples/CantAnnotateStaticClass.java@71f35e4b93a5
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8026564: import changes from type-annotations forest
Reviewed-by: jjg
Contributed-by: wdietl@gmail.com, steve.sides@oracle.com

jjg@1521 1 /*
jjg@1521 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1521 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1521 4 *
jjg@1521 5 * This code is free software; you can redistribute it and/or modify it
jjg@1521 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1521 7 * published by the Free Software Foundation.
jjg@1521 8 *
jjg@1521 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1521 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1521 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1521 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1521 13 * accompanied this code).
jjg@1521 14 *
jjg@1521 15 * You should have received a copy of the GNU General Public License version
jjg@1521 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1521 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1521 18 *
jjg@1521 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1521 20 * or visit www.oracle.com if you need additional information or have any
jjg@1521 21 * questions.
jjg@1521 22 */
jjg@1521 23
jjg@2134 24 // key: compiler.err.cant.type.annotate.scoping.1
jjg@1521 25
jjg@1521 26 import java.lang.annotation.*;
jjg@1521 27
jjg@2134 28 class CantAnnotateNestedType {
jjg@1521 29 @Target(ElementType.TYPE_USE)
jjg@2134 30 @interface TA {}
jjg@1521 31
jjg@2134 32 interface Outer {
jjg@2134 33 interface Inner {}
jjg@1521 34 }
jjg@1521 35
jjg@1521 36 // Error:
jjg@2134 37 @TA Outer.Inner f;
jjg@1521 38
jjg@1521 39 // OK:
jjg@2134 40 @TA Outer g;
jjg@1521 41 }

mercurial