mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 19:09:53 +08:00
9 lines
124 B
Java
9 lines
124 B
Java
|
// Test case for the PR gcj/163
|
||
|
|
||
|
// Uninitalized final variables should not be permitted.
|
||
|
|
||
|
class PR163
|
||
|
{
|
||
|
final int foo;
|
||
|
}
|