w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0522.cs
blobbd9b2f6073b2d0bf71c560e70d73a02cd07b7080
1 // CS0522: `SampleStruct.SampleStruct(int)': Struct constructors cannot call base constructors
2 // Line: 5
4 struct SampleStruct {
5 public SampleStruct (int value): base (value) {}