Add new error case
[mono.git] / mcs / btests / ArithmeticOperatorsC2.vb
1 REM LineNo: 13
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions from 'Double' to 'Long'.
4
5 Option Strict On
6 Imports System
7
8 Module ArithmeticOperatorsC2
9
10     Sub main()
11         Dim a1, a2 As Integer
12
13         a1 = 12 \ 2.5
14
15         Dim b1 As Decimal
16         b1 = 34.45D
17     End Sub
18
19 End Module