[xbuild] Fix #40094, part 1/2: SolutionParser: Emit `AbsolutePath="..."`
[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 }