summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0573-3.cs
blob: e3faa9b2ad824711f44985747ca6611acec3cf89 (plain)
1
2
3
4
5
6
7
8
9
// CS0573: 'S': Structs cannot have instance property or field initializers
// Line: 8

using System;

struct S
{
	event Action E = null;
}