2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0234-3.cs
1 // error CS0234: The type or namespace name `Type' could not be found in namespace `MonoTests.System'
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