* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / errors / cs0547-2.cs
1 // cs0547.cs: 'Value' : property cannot have void type
2 // Line: 5
3
4 interface PropertyInterface {
5         void Value { get; }
6 }
7