(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / LoopStatementsC7.vb
blob210ebbee54faf74426cae37a405b5861e67f7111
1 REM LineNo: 11
2 REM ExpectedError: BC30082
3 REM ErrorMessage: 'While' must end with a matching 'End While'
5 Imports System
7 Module LoopStatementsC7
9 Sub main()
11 While 1
12 Console.WriteLine("Hello World")
14 End Sub
16 End Module