* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1547-3.cs
1 // CS1547.cs: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C {\r
5         const string s = "3";
6         public object o = (void)s;
7 }