**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / LoopStatementsC2.vb
bloba7292327609eb7d3cecceb9e845b9c18547741bd
1 REM LineNo: 13
2 REM ExpectedError: BC30238
3 REM ErrorMessage: 'Loop' cannot have condition if matching 'Do' has one.
5 Imports System
7 Module LoopStatementsC2
9 Sub main()
11 Do While 1
12 Console.WriteLine("Hello World")
13 Loop While 1
15 End Sub
17 End Module