2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0105.cs
blob11f59b738b2039f7623fa9add8bb0810a3f65785
1 // cs0105.cs: The using directive for `System' appeared previously in this namespace
2 // Line: 6
3 // Compiler options: -warnaserror -warn:3
5 using System;
6 using System;
8 public class X
10 static int Main ()
12 int a=5;
13 return a;