[System.IO.KeventWatcher] Disable the watcher when the root directory is deleted...
[mono.git] / mcs / errors / cs0547-2.cs
1 // CS0547: `PropertyInterface.Value': property or indexer cannot have void type
2 // Line: 5
3
4 interface PropertyInterface {
5         void Value { get; }
6 }
7