Update list to compile with mcs
[mono.git] / mcs / errors / cs0179.cs
1 // cs0179.cs: member can not be declared extern and have a body
2 // Line:
3
4 class X {
5
6         public extern int extern_method ()
7                 {
8                 }
9         
10         public static void Main ()
11                 {
12                 }
13 }
14