Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8342.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6d7f43f0bfa2400855ba9afc91423e3c255484f (plain)
1
2
3
4
5
6
7
8
9
10
// CS8342: `S.e': Field-like instance events are not allowed in readonly structs
// Line: 6
// Compiler options: -langversion:latest

using System;

readonly struct S
{
	event Action e;
}