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: 13582a7c855b56833222dc8ae056cff1367255f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// error CS0118: 'A.B' denotes a 'namespace', where 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 ();
		}
	}
}