we do not report cs0229 at all really
[mono.git] / mcs / errors / cs0547.cs
1 // cs0547.cs: 'PropertyClass.Value' : property or indexer cannot have void type\r
2 // Line: 5\r
3 \r
4 class PropertyClass {\r
5         public void Value { get {}\r
6         }\r
7 }\r
8 \r
9 \r