New test.
[mono.git] / mcs / errors / cs1031.cs
1 // cs1031.cs: Type expected
2 // Line: 8
3
4 class M
5 {
6     public static void Main ()
7     {
8         p = new this;
9     }
10 }
11