(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / VariablesC.vb
blobc1ea7f0b112d609f46739575e8c4308f8545e640
1 Imports System
3 Class cls
4 End Class
6 Module VariableC
7 Dim a As Integer = 10
8 Dim b As String = "abc"
9 Dim c As cls = New cls()
12 Dim e() As Integer = {1, 2, 3, 4, 5}
14 Sub Main()
15 Console.WriteLine(b)
17 If a <> 10 Then
18 Throw New Exception("#A1, value mismatch")
19 End If
20 If b <> "abc" Then
21 Throw New Exception("#A2, value mismatch")
22 End If
26 End Sub
27 End Module