* libjava.compile/BlankFinal.java: Removed; incorrect test.

From-SVN: r47739
This commit is contained in:
Tom Tromey 2001-12-07 00:12:56 +00:00 committed by Tom Tromey
parent 21cf0a7365
commit e94c6dee73
2 changed files with 4 additions and 16 deletions

View file

@ -1,16 +0,0 @@
// Test to see if "blank final" variables work.
// From Mo DeJong <mdejong@cygnus.com>
public class BlankFinal {
static final boolean cond;
static {
try
{
cond = true;
}
catch(Exception e) {
// do nothing
}
}
}