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