Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0437.cs
1 // CS0437: The type `System' conflicts with the imported namespace `System'. Using the definition found in the source file
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 enum System { A }
6
7 class X
8 {
9         void Method (System arg)
10         {
11         }
12 }