Add new error case
[mono.git] / mcs / btests / OptionalArgu_ByRefFuncA.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         Function F(ByVal telephoneNo as Long, Optional ByRef code as Integer = 080) As Boolean\r
12                 if (code = 080)\r
13                         return false\r
14                 else \r
15                         return true\r
16                 end if\r
17         End Function \r
18    \r
19    Sub Main()\r
20       Dim telephoneNo As Long = 9886066432\r
21          Dim code As Integer = 081\r
22         Dim status as Boolean\r
23      status = F(telephoneNo,code)\r
24         if(status = false)\r
25                 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")\r
26         end if\r
27 \r
28    End Sub \r
29 \r
30 End Module