blob: ea0010ea51301fac2a3495d8082a18363eaf395c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0138: `System.Console' is a type not a namespace. A using namespace directive can only be applied to namespaces
// Line: 5
using System;
using System.Console;
class A
{
static void Main ()
{
Console.WriteLine ("Test CS0138");
}
}
|