[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0118-6.cs
1 // CS0118: `MonoTests.System.Data.Test' is a `namespace' but a `type' was expected
2 // Line: 22
3 using NUnit.Framework;
4 using System;
5
6 namespace NUnit.Framework
7 {
8         public class Test : Attribute
9         { }
10 }
11
12 namespace MonoTests.System.Data.Test.Utils
13 {
14         public class Y
15         { }
16 }
17
18 namespace MonoTests.System.Data.SqlTypes
19 {
20         public class X
21         {
22                 [Test]
23                 public void Hello ()
24                 {
25                 }
26
27                 static void Main ()
28                 { }
29         }
30 }