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 { } }