cleol
[mcs.git] / errors / cs0118-6.cs
blob2e9d9e47f2f5a972f81ed50d7775fe9d5b854ea2
1 // CS0118: `MonoTests.System.Data.Test' is a `namespace' but a `type' was expected
2 // Line: 22
3 using NUnit.Framework;
4 using System;
6 namespace NUnit.Framework
8 public class Test : Attribute
9 { }
12 namespace MonoTests.System.Data.Test.Utils
14 public class Y
15 { }
18 namespace MonoTests.System.Data.SqlTypes
20 public class X
22 [Test]
23 public void Hello ()
27 static void Main ()
28 { }