2007-10-18 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / cs0548.cs
1 // cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor
2 // Line: 5
3
4 class PropertyClass {
5         public int Value {
6         }
7 }