DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0103-5.cs
123456789
// CS0103: The name `i' does not exist in the current context // Line: 6 class X { void Y () { for (; true; ++i) { break; } } }