DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs1547-11.cs
12345678910
// CS1547: Keyword `void' cannot be used in this context // Line: 8 class X { static void Main () { object o = default(void); } }