Corrected GotoStatementA.vb and removed ^M in all tests
[mono.git] / mcs / mbas / Test / tests / MethodDeclarationD.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 Imports System
7
8 Module MethodDeclarationA
9         Function A(ByRef i as Integer)As Integer                         
10                 i = 19
11         End Function
12         Sub Main()
13                 A(10)
14         End Sub
15 End Module
16