2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0519.cs
blobd727961395ce2431a773218d485c71e3b7cda3ff
1 // cs0519.cs: `System' clashes with a predefined namespace
2 // Line: 1
4 enum System { A }
6 class X {
7 static void Main ()
9 System s = new System ();