* MonoWSDL.cs: Added new option that prints a sample request and response
[mono.git] / mcs / btests / SingleTypeCharTest.vb
1 Module SingleTypeCharTest\r
2     Sub Main()\r
3         Try\r
4             Dim m As Integer\r
5             m = f(20)\r
6             If m <> 20 Then\r
7                 Throw New Exception("IntegerTypeChar: failed")\r
8             End If\r
9             Exit Sub\r
10         Catch e As Exception\r
11             Console.WriteLine(e.Message)\r
12         End Try\r
13     End Sub\r
14 \r
15     Function f!(ByVal param!)\r
16         f = param\r
17     End Function\r
18 End Module\r