Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0138.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea95cd91e11991d4a92294031d9a693c7859e01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0138.cs: Using keyword only let you specify a namespace,
// 	      Console is a class not a namespace.
// Line: 5

using System;
using System.Console;

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