[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0262.cs
1 // CS0262: Partial declarations of `Foo' have conflicting accessibility modifiers
2 // Line: 6
3 public partial class Foo
4 { }
5
6 internal partial class Foo
7 { }
8
9 class X
10 {
11         static void Main ()
12         { }
13 }