* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / tests / typemembers / MethodDeclarationE.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 'To Check if only those parameters that follow Optional must be Optional
7
8 Imports System
9
10 Module MethodDeclarationA
11         Sub A1(ByVal i as Integer, Optional ByVal j as Integer =10)                     
12         End Sub
13         Sub Main()
14         End Sub
15 End Module
16