Wed Oct 17 13:24:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
[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