(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / LongTypeCharTestA.vb
blob31809aad444da7635678cac55a01fc6596d23603
1 REM LineNo: 13
2 REM ExpectedError: BC30288
3 REM ErrorMessage: Local variable 'b' is already declared in the current block.
5 Module M
6 Sub Main()
7 Dim a As Long
8 a=10
10 Dim b&
11 b&=20
13 Dim b As Long
14 b&=20
15 End Sub
16 End Module