* MonthCalendar.cs:
[mono-project.git] / mcs / btests / DoubleTypeCharTestA.vb
blob8d6a34eea45fc8266d61b5b27ecbbc9d46486b1d
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 Double
9 a#=10.25
11 Dim b#
12 b=20.24
14 Dim c As Double
15 c#=23.45
17 Dim d# As Double
18 d=45.56
19 End Sub
20 End Module