* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / MethodDeclarationC13.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 REM LineNo: 13\r
7 REM ExpectedError: BC30641\r
8 REM ErrorMessage: 'ByVal' and 'ByRef' cannot be combined.\r
9 \r
10 Imports System\r
11 \r
12 Module MethodDeclarationA\r
13         Sub A(ByVal ByRef i as Integer)                 \r
14         End Sub\r
15         Sub Main()\r
16         End Sub\r
17 End Module\r
18