blob: b1c02c33daf1434f58c74494e1e4250e20f717ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0437: The type `System' conflicts with the imported namespace `System'. Using the definition found in the source file
// Line: 9
// Compiler options: -warnaserror
enum System { A }
class X
{
void Method (System arg)
{
}
}
|