**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / DecimalTypeCharTestA.vb
bloba9b169e6e90468f45e982060eb9aa3f22e30338b
1 REM LineNo: 17
2 REM ExpectedError: BC30302
3 REM ErrorMessage: Type character '@' cannot be used in a declaration with an explicit type.
5 Imports System
6 Module DecimalTypeCharTest
7 Sub Main()
8 Dim a As Decimal
9 a@=10.25
11 Dim b@
12 b=20.24
14 Dim c As Decimal
15 c@=23.45
17 Dim d@ As Decimal
18 d=45.56
19 End Sub
20 End Module