Commit 006941eb by Andrew Haley Committed by Andrew Haley

StaticConstructor.java: New.

2002-10-14  Andrew Haley  <aph@redhat.com>

        * libjava.lang/StaticConstructor.java: New.
        * libjava.lang/StaticConstructor.out: New.

From-SVN: r58131
parent f4e3e618
2002-10-14 Andrew Haley <aph@redhat.com>
* libjava.lang/StaticConstructor.java: New.
* libjava.lang/StaticConstructor.out: New.
2002-10-13 Mark Wielaard <mark@klomp.org>
* libjava.mauve/xfails: Remove tests that now XPASS.
......
g// Test to make sure static initializers are called
class bar
{
public static int zog;
public static int zag;
static
{
zog = 12;
zag = 2;
}
public bar() { }
}
public class StaticConstructor
{
static int foo ()
{
return new bar().zog;
}
public static void main(String args[])
{
System.out.println ("" + (foo() + bar.zag));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment