Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0103-5.cs
1 // CS0103: The name `i' does not exist in the current context
2 // Line: 6
3
4 class X {
5         void Y () {
6                 for (; true; ++i) { break; }
7         }
8 }
9