Merged changes in master libmonoruntime into PR.
[mono.git] / mcs / errors / cs1525-24.cs
1 // CS1525: Unexpected symbol `{', expecting `base' or `this'
2 // Line: 5
3
4 class X {
5         X () : {
6         }
7
8         static void Main () {}
9 }