Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

31 lines
405 B
C#

// CS0118: `MonoTests.System.Data.Test' is a `namespace' but a `type' was expected
// Line: 22
using NUnit.Framework;
using System;
namespace NUnit.Framework
{
public class Test : Attribute
{ }
}
namespace MonoTests.System.Data.Test.Utils
{
public class Y
{ }
}
namespace MonoTests.System.Data.SqlTypes
{
public class X
{
[Test]
public void Hello ()
{
}
static void Main ()
{ }
}
}