**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / LocalDeclarationC3.vb
blob7bd2050ca8dd511f96c2b4ef7d0a7f6978ca088b
1 REM LineNo: 11
2 REM ExpectedError: BC30246
3 REM ErrorMessage: 'Static' is not valid on a local constant declaration.
5 Imports System
7 Module LocalDeclarationC2
9 Sub main()
10 Static Dim a2 As Integer = 11
11 Static Const a3 As Integer = 12
12 End Sub
14 End Module