[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0105.cs
blob27c110cd7a9fda9a3c350cf7eb40fc70a8e61180
1 // CS0105: 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;