(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / LocalDeclarationC2.vb
blobed580b849947846afe9fcfe9618c60ba179309fb
1 REM LineNo: 10
2 REM ExpectedError: BC30246
3 REM ErrorMessage: 'Dim' is not valid on a local constant declaration.
5 Imports System
7 Module LocalDeclarationC2
9 Sub Main()
10 Dim Const a1 As Integer = 10
11 End Sub
13 End Module