**** Merged from MCS ****
[mono-project.git] / mcs / btests / ArithmeticOperatorsC3.vb
blob3f3ba0a9367dd464d9b0d8d8887887d1631f196f
1 REM LineNo: 19
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions from 'Double' to 'Long'.
5 Option Strict On
6 Imports System
8 Module ArithmeticOperatorsC2
10 Sub main()
11 Dim a1, a2 As Integer
13 a1 = 12 \ 2.5
15 Dim b1 As Decimal
16 b1 = 34.45D
17 End Sub
19 End Module