Dep.java revision 0
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu/*
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * Copyright 2003-2004 Sun Microsystems, Inc. All Rights Reserved.
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu *
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * This code is free software; you can redistribute it and/or modify it
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * under the terms of the GNU General Public License version 2 only, as
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * published by the Free Software Foundation.
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu *
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * This code is distributed in the hope that it will be useful, but WITHOUT
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dcbb8752cad43dc7ce58bc630f16c0ff40ce4449Francisc Nicolae Bungiu * version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/*
* @test
* @bug 4903501
* @summary Please add annotation <at>Deprecated to supplant the javadoc tag
* @author gafter
*
* @compile -source 1.4 -Xlint:dep-ann -Werror Dep.java
* @compile/fail -source 1.5 -Xlint:dep-ann -Werror Dep.java
* @compile -source 1.5 -Xlint:dep-ann Dep.java
*/
/** @deprecated */
class Dep {
}