* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / ConstantsC10.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 REM LineNo: 15\r
7 REM ExpectedError: BC30209\r
8 REM ErrorMessage:  Option Strict On requires all variable declarations to have an 'As' clause.\r
9 \r
10 Option Strict on                \r
11 Imports System\r
12 \r
13 Module M\r
14         Sub Main()\r
15                 Const a = 10\r
16         End sub\r
17 End Module