[#7637][Web]: This is supposed to fail prior to .NET 4.0.
[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