2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / errors / DoubleTypeCharTestA.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 Double
9         a#=10.25
10
11         Dim b#
12         b=20.24
13
14         Dim c As Double
15         c#=23.45
16
17         Dim d# As Double
18         d=45.56
19     End Sub
20 End Module