[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs0515.cs
1 // CS0515: `X.X()': static constructor cannot have an access modifier
2 // Line: 5
3
4 class X {
5         public static X ()
6         {
7         }
8 }