Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-452.cs
1 class Foo
2 {
3         static public Foo x;
4 }
5
6 class Test
7 {
8         public static void Main ()
9         {
10                 Foo Foo;
11                 Foo = Foo.x;
12         }
13 }