Migarting the mbas' negative test cases from the old folder to here.
[mono.git] / mcs / mbas / Test / errors / LocalDeclarationC5.vb
1 REM LineNo: 12
2 REM ExpectedError: BC30074
3 REM ErrorMessage: Constant cannot be the target of an assignment.
4
5 Imports System
6
7 Module LocalDeclarationC1
8
9     Sub Main()
10         Const a As Integer = 10
11         Const b As Integer = 20
12         b = a + b
13     End Sub
14
15 End Module