Last change
on this file was 2, checked in by dmik, 15 years ago |
Imported OpenJDK 6 b19 sources from Oracle.
|
File size:
887 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * @test /nodynamiccopyright/
|
---|
3 | * @bug 6394563
|
---|
4 | * @summary javac ignores -nowarn switch in 1.5.0_06 for deprecation warnings
|
---|
5 | *
|
---|
6 | * @compile/ref=T6394563.note.out -XDstdout -XDrawDiagnostics -nowarn T6394563.java
|
---|
7 | * @compile/ref=T6394563.note.out -XDstdout -XDrawDiagnostics -nowarn -source 1.5 T6394563.java
|
---|
8 | * @compile/ref=T6394563.empty.out -XDstdout -XDrawDiagnostics -nowarn -source 1.4 T6394563.java
|
---|
9 | *
|
---|
10 | * @compile/ref=T6394563.warn.out -XDstdout -XDrawDiagnostics -Xlint -nowarn T6394563.java
|
---|
11 | * @compile/ref=T6394563.warn.out -XDstdout -XDrawDiagnostics -Xlint -nowarn -source 1.5 T6394563.java
|
---|
12 | * @compile/ref=T6394563.empty.out -XDstdout -XDrawDiagnostics -Xlint -nowarn -source 1.4 T6394563.java
|
---|
13 | */
|
---|
14 |
|
---|
15 | class T6394563 {
|
---|
16 | void useDeprecated() {
|
---|
17 | deprecated.foo();
|
---|
18 | }
|
---|
19 | }
|
---|
20 |
|
---|
21 | class deprecated {
|
---|
22 | /** @deprecated */ static void foo() { }
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.