**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / tests / ArrayD.vb
blobcf0b3ff139f0c8ed870ac0e45bc851c4754bc845
1 Imports System
2 Imports Microsoft.VisualBasic
4 Module VariableC
5 Dim a() As Integer = {1, 2, 3, 4, 5}
7 Sub Main()
8 dim c as Integer
10 c = UBound(a, 1)
11 c = LBound(a, 1)
12 'c = UBound(a)
13 'c = LBound(a)
15 End Sub
16 End Module