(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / LoopStatementsC1.vb
blob05409b56c87bf948393e076c9e8225bf15483121
1 REM LineNo: 11
2 REM ExpectedError: BC30201
3 REM ErrorMessage: Expression expected.
5 Imports System
7 Module LoopStatementsC1
9 Sub main()
11 Do While
12 Console.WriteLine("Hello World")
13 Loop
15 End Sub
17 End Module