Z9.java revision 288
981N/A/*
2362N/A * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
981N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
981N/A *
981N/A * This code is free software; you can redistribute it and/or modify it
981N/A * under the terms of the GNU General Public License version 2 only, as
981N/A * published by the Free Software Foundation.
981N/A *
981N/A * This code is distributed in the hope that it will be useful, but WITHOUT
981N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
981N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
981N/A * version 2 for more details (a copy is included in the LICENSE file that
981N/A * accompanied this code).
981N/A *
981N/A * You should have received a copy of the GNU General Public License version
981N/A * 2 along with this work; if not, write to the Free Software Foundation,
981N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
981N/A *
2362N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
2362N/A * CA 95054 USA or visit www.sun.com if you need additional information or
2362N/A * have any questions.
981N/A */
981N/A
981N/A/*
981N/A * @test
981N/A * @bug 4865660
981N/A * @summary implement "metadata" (attribute interfaces and program annotations)
981N/A * @author gafter
981N/A *
981N/A * @compile/fail Z9.java
981N/A */
981N/A
981N/A@interface An {
981N/A <T> int x();
981N/A}
981N/A