[w32file] Remove dead code
[mono.git] / mcs / errors / cs0234-3.cs
1 // CS0234: The type or namespace name `Type' does not exist in the namespace `MonoTests.System'. Are you missing an assembly reference?
2 // Line: 12
3
4 using System;
5
6 namespace MonoTests.System
7 {
8         public class Test
9         {
10                 public static void Main ()
11                 {
12                         Console.WriteLine (System.Type.GetType ("System.String"));
13                 }
14         }
15 }
16
17