14 lines
154 B
C#
Raw Normal View History

class Foo
{
static public Foo x;
}
class Test
{
public static void Main ()
{
Foo Foo;
Foo = Foo.x;
}
}