w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs8342.cs
blobd6d7f43f0bfa2400855ba9afc91423e3c255484f
1 // CS8342: `S.e': Field-like instance events are not allowed in readonly structs
2 // Line: 6
3 // Compiler options: -langversion:latest
5 using System;
7 readonly struct S
9 event Action e;