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: af82adcf4d6a8fc49786d33b6059c8d12f11db7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Foo
{
        static public Foo x;
}

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