(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ForC7.vb
blobbbef163089ec3375d034c8c742af11e016cf9956
1 REM LineNo: 14
2 REM ExpectedError: BC30070
3 REM ErrorMessage: Next control variable does not match For loop control variable 'j'.
5 Imports System
7 Module ForC7
9 Sub main()
11 For i As Integer = 0 To 10 Step 2
12 For j As Integer = 0 To 10 Step 4
13 Console.WriteLine("Hello World")
14 Next i
15 Next
17 End Sub
19 End Module