Add glib to the list of packages with debugging symbols.
[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