[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0101-6.cs
1 // CS0101: The namespace `Test' already contains a definition for `Foo'
2 // Line: 10
3
4 namespace Test
5 {
6         public class Foo
7         {
8         }
9         
10         namespace Foo.PP
11         {
12         }
13 }