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