Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0522.cs
blobcea62462bc36dd65ab31a1b021d1468a8b15972f
1 // cs0522.cs: `SampleStruct.SampleStruct(int)': Struct constructors cannot call base constructors
2 // Line: 5
4 struct SampleStruct {
5 public SampleStruct (int value): base (value) {}