view j2se/test/tools/javac/mandatoryWarnings/deprecated/B.java @ 7:807dfe9c366c trunk

[svn] Load openjdk/jdk7/b19 into jdk/trunk.
author xiomara
date Fri, 31 Aug 2007 00:44:13 +0000
parents a4ed3fb96592
children
line wrap: on
line source

/*
 * /nodynamiccopyright/
 *
 * Test code for Test.sh
 */


class B
{
    void f() {
	B1 b1 = new B1();
	B1 b1a = new B1();
    }
}


@Deprecated
class B1 {
}