(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ForC9.vb
blob2236be687945c21347e0e966afb7161a0c406f4b
1 REM LineNo: 15
2 REM ExpectedError: BC30451
3 REM ErrorMessage: Name 'j' is not declared
5 Imports System
7 Module ForC9
9 Sub main()
11 For i As Integer = 0 To 10
12 For j As Integer = 0 to 10
13 Console.WriteLine("Hello World")
14 Next
15 j = 2 ' scope check
16 Next
18 End Sub
20 End Module