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; }