**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / LongTypeCharTestC4.vb
blob3e291527aa84d3733814d92c9a32d2cd993d8548
1 REM LineNo: 7
2 REM ExpectedError: BC30302
3 REM ErrorMessage: Type character '&' cannot be used in a declaration with an explicit type.
5 Module M
6 Sub Main()
7 Dim b& As Long
8 b=20
9 End Sub
10 End Module