**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / tests / Import1.vb
blob5a4164a8650ce61ecef40500d39f90e3bf850091
1 REM CompilerOptions: /r:Dll1.dll
3 Imports System
4 Imports Dll1
6 Module Test
7 Sub Main
8 Dim i As Integer
9 Dll1.OutInt(i)
10 If i <> 123 Then
11 Throw New Exception("#A1: Wrong value returned: " & i.ToString())
12 End If
13 End Sub
14 End Module