summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0138.cs
blob: b0d36314517d3fe52663f3411568c85501d5b6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0138: A `using' directive can only be applied to namespaces but `System.Console' denotes a type. Consider using a `using static' instead
// Line: 5

using System;
using System.Console;

class A
{
	static void Main ()
	{
		Console.WriteLine ("Test CS0138");
	}
}