Merge pull request #1570 from mono/fix27010
[mono.git] / mcs / errors / cs0573-3.cs
1 // CS0573: 'S': Structs cannot have instance property or field initializers
2 // Line: 8
3
4 using System;
5
6 struct S
7 {
8         event Action E = null;
9 }