[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0179.cs
1 // CS0179: `X.extern_method()' cannot declare a body because it is marked extern
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