mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 08:03:41 +08:00
23 lines
382 B
Java
23 lines
382 B
Java
|
// Class final_int
|
||
|
// Generated on Sat Feb 12 01:27:46 PST 2000
|
||
|
|
||
|
class final_int {
|
||
|
|
||
|
final int x = 30;
|
||
|
|
||
|
class foo {
|
||
|
int bar () {
|
||
|
return x;
|
||
|
}
|
||
|
}
|
||
|
void bar () {
|
||
|
int x = this.new foo ().bar ();
|
||
|
System.out.println (x);
|
||
|
}
|
||
|
public static void main (String[] arg)
|
||
|
{
|
||
|
System.out.println ("Testing class `final_int'...");
|
||
|
new final_int().bar ();
|
||
|
}
|
||
|
}
|