Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs1031-2.cs
1 // CS1031: Type expected
2 // Line: 8
3
4 using System;
5
6 class M
7 {
8         public static void Main ()
9         {
10                 Type t = typeof (this);
11         }
12 }
13