Merge pull request #3569 from lambdageek/monodis-no-segfault
[mono.git] / mcs / errors / cs1525-7.cs
1 // CS1525: Unexpected symbol `this', expecting `[', `{', or `type'
2 // Line: 8
3
4 class M
5 {
6     public static void Main ()
7     {
8         p = new this;
9     }
10 }
11