summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-7.cs
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
	{
	}
}