DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs1547-7.cs
123456789101112
// CS1547: Keyword `void' cannot be used in this context // Line: 6 class C { int Foo () { foreach (void v in this) { } } }