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

cs0118-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b7787ad69f970b23074302b213a9c43f664430c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0118-2.cs: `A.B' is a `namespace' but a `type' was expected
// Line: 9
// Compiler options: -r:CS0118-2-lib.dll

using A.B.C;

namespace A.D {
	class Test {
		static public void Main () 
		{
			B c = new B ();
		}
	}
}