Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1547-3.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C {
5         const string s = "3";
6         public object o = (void)s;
7 }