blob: 2e9d9e47f2f5a972f81ed50d7775fe9d5b854ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// 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 ()
{ }
}
}
|