(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / LocalDeclarationC5.vb
blobf20859fc990a1539d6cb0b595b48f5b1d3040c67
1 REM LineNo: 12
2 REM ExpectedError: BC30074
3 REM ErrorMessage: Constant cannot be the target of an assignment.
5 Imports System
7 Module LocalDeclarationC1
9 Sub Main()
10 Const a As Integer = 10
11 Const b As Integer = 20
12 b = a + b
13 End Sub
15 End Module