2003-12-25 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0548.cs
1 // cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor\r
2 // Line: 5\r
3 \r
4 class PropertyClass {\r
5         public int Value {\r
6         }\r
7 }\r
8 \r
9 \r