Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-452.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eac49b5eb773a3ae1a1aabe8764cd9e31b14ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Foo
{
        static public Foo x;
}

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