blob: 27c110cd7a9fda9a3c350cf7eb40fc70a8e61180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS0105: The using directive for `System' appeared previously in this namespace
// Line: 6
// Compiler options: -warnaserror -warn:3
using System;
using System;
public class X
{
static int Main ()
{
int a=5;
return a;
}
}
|