**** Merged from MCS ****
[mono-project.git] / mcs / btests / LogicalOperatorsC4.vb
bloba1703b6baeef4168a45227714dc1d5e74c0943df
1 REM LineNo: 14
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions from 'Double' to 'Long'.
5 Option Strict On
7 Imports System
9 Module LogicalOperatorsC1
10 Sub main()
12 Dim a1 As Integer = 1
13 Dim b1 As Double = 10.02
14 If a1 And b1 Then
15 Console.WriteLine ("Oops!")
16 End If
17 End Sub
18 End Module