Test for PR gcj/163:

2000-03-07  Bryce McKinlay  <bryce@albatross.co.nz>

        Test for PR gcj/163:
        * libjava.lang/PR163.java: New file.
        * libjava.lang/PR163.xfail: New file.

From-SVN: r32393
This commit is contained in:
Bryce McKinlay 2000-03-07 22:54:12 +00:00 committed by Bryce McKinlay
parent c7ce272aa5
commit 28c231d647
3 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,8 @@
// Test case for the PR gcj/163
// Uninitalized final variables should not be permitted.
class PR163
{
final int foo;
}