(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / OptionalArgu_ByReferenceA.vb
blobfa260c869b8969210d7126a295ae0005b1f013c8
1 '=============================================================================================
2 'Name:Manish Kumar Sinha
3 'Email Address: manishkumarsinha@sify.com
4 'Test Case Name: Argument passing by Optional Keyword:
5 'O.P-1.0.1: An Optional parameter must specify a constant expression to be used a replacement
6 ' value if no argument is specified.
7 '=============================================================================================
9 Imports System
10 Module OP1_0_1
11 Sub F(ByVal telephoneNo as Long, Optional ByRef code as Integer = 080)
12 if (code = 080)
13 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")
14 end if
15 End Sub
17 Sub Main()
18 Dim telephoneNo As Long = 9886066432
19 Dim code As Integer = 081
20 F(telephoneNo,code)
21 End Sub
23 End Module