Updated with review feedback.
[mono.git] / mcs / errors / cs1547-6.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C {
5         object o = new void();
6 }