[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0522.cs
1 // CS0522: `SampleStruct.SampleStruct(int)': Struct constructors cannot call base constructors
2 // Line: 5
3
4 struct SampleStruct {
5         public SampleStruct (int value): base (value) {}
6 }
7