(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / OptionalArgu_exe.vb
blobab637a030716cef532fd53d0abaec30721870cb7
1 REM LineNo: 7
2 REM ExpectedError: BC30002
3 REM ErrorMessage: Type 'c' is not defined.
5 Module M
6 Sub Main()
7 Dim x As New c()
9 Dim res as String
11 res = x.s (10)
12 If (res <> "s : 10 - 10 - aaa")
13 Throw New System.Exception ("#A1, Unexpected result returned by OptionalArgu_dll.dll")
14 End If
16 res = x.s (5, 5)
17 If (res <> "s : 5 - 5 - aaa")
18 Throw New System.Exception ("#A2, Unexpected result returned by OptionalArgu_dll.dll")
19 End If
20 End Sub
21 End Module