2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / DecimalTypeCharTestA.vb
1 REM LineNo: 17
2 REM ExpectedError: BC30302
3 REM ErrorMessage: Type character '@' cannot be used in a declaration with an explicit type.
4
5 Imports System
6 Module DecimalTypeCharTest
7     Sub Main()
8         Dim a As Decimal
9         a@=10.25
10
11         Dim b@
12         b=20.24
13
14         Dim c As Decimal
15         c@=23.45
16
17         Dim d@ As Decimal
18         d=45.56
19     End Sub
20 End Module