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

cs0118-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf69cfaab2c509c8806e1ab58c4e0e76417a3423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// CS0118: `Martin.Test' is a `namespace' but a `type' was expected
// Line: 15
using System;
using Foo;

namespace Foo
{
	public class Test : Attribute
	{
	}
}

namespace Martin.Test
{
	[Test]
	public class X
	{
	}
}