(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ForC5.vb
blobedc10fe17991e2f215ce70251f3d1de864ee5cfa
1 REM LineNo: 13
2 REM ExpectedError: BC30092
3 REM ErrorMessage: 'Next' must be preceded by a matching 'For'
5 Imports System
7 Module ForC5
9 Sub main()
10 Dim i As Integer
12 Console.WriteLine("Hello World")
13 Next
14 End Sub
16 End Module