diff -r fd16c54261b3 -r 06bc494ca11e langtools/test/tools/javac/T6214885.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/langtools/test/tools/javac/T6214885.java Sat Dec 01 00:00:00 2007 +0000 @@ -0,0 +1,13 @@ +/* + * @test /nodynamiccopyright/ + * @bug 6214885 + * @summary This test exercises features provided by the new internal Diagnostics API + * @compile/fail/ref=T6214885a.out -XDstdout -XDdiags=%b:%l%_%t%m|%p%m T6214885.java + * @compile/fail/ref=T6214885b.out -XDstdout -XDdiags=%b:%l:%c%_%t%m|%p%m T6214885.java + */ +class T6214885 +{ + public void m() { + x = 1; + } +}