[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0118-7.cs
1 // CS0118: `Martin.Test' is a `namespace' but a `type' was expected
2 // Line: 15
3 using System;
4 using Foo;
5
6 namespace Foo
7 {
8         public class Test : Attribute
9         {
10         }
11 }
12
13 namespace Martin.Test
14 {
15         [Test]
16         public class X
17         {
18         }
19 }