mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-26 04:09:00 +08:00
18 lines
341 B
Java
18 lines
341 B
Java
|
// Class final_static_and_friend
|
||
|
// Generated on Sat Feb 12 01:58:38 PST 2000
|
||
|
|
||
|
class final_static_and_friend {
|
||
|
final int a = 34;
|
||
|
static int b = 34;
|
||
|
int c = 34;
|
||
|
void foo ()
|
||
|
{
|
||
|
System.out.println (a+b+c);
|
||
|
}
|
||
|
public static void main (String[] arg)
|
||
|
{
|
||
|
new final_static_and_friend ().foo ();
|
||
|
}
|
||
|
|
||
|
}
|