Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-820.cs
1 // Compiler options: -main:C
2
3 using System;
4
5 namespace NS
6 {
7         public class C
8         {
9                 public static void Main ()
10                 {
11                         throw new NotImplementedException ();
12                 }
13         }
14 }
15
16 public class C
17 {
18         public static int Main (string[] a)
19         {
20                 return 0;
21         }
22 }