(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ForC4.vb
blob8dc879e1aa58409ccc0e3dce98da94babe32e30e
1 REM LineNo: 12
2 REM ExpectedError: BC30084
3 REM ErrorMessage: 'For' must end with a matching 'Next'
5 Imports System
7 Module ForC4
9 Sub main()
11 Dim i As Integer
12 For i = 0 To 10
13 Console.WriteLine("Hello World")
15 End Sub
17 End Module