Merge pull request #5675 from mono/glib-debug-symbols
[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 }