Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-911.cs
1 // Compiler options: -r:test-911-lib.dll
2
3 class N
4 {
5         public static void Foo ()
6         {
7         }
8 }
9
10 class X
11 {
12         public static void Main ()
13         {
14                 N.Foo ();
15         }
16 }