**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / tests / ForC.vb
blob569334bc18534eb1db25e896b3c7385f727c3aba
1 Imports System
3 Module ForB
4 Class C1
5 Sub x()
6 For index as integer = 0 To 2
7 Console.WriteLine(index)
8 Next
10 End Sub
12 End Class
14 Sub main()
15 Dim c As New C1()
16 c.x()
17 End Sub
19 End Module