summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-5.cs
blob: ec03da4f81ed252a0172753aad3795ba369a8230 (plain)
1
2
3
4
5
6
7
8
9
// CS0103: The name `i' does not exist in the current context
// Line: 6

class X {
	void Y () {
		for (; true; ++i) { break; }
	}
}