(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ShiftOperatorsC1.vb
blob5675eb47507033d56b73252b1aa443e3778525fa
1 REM LineNo: 12
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 ShiftOperatorsC1
10 Sub Main()
11 Dim a1 As Double = 200.93
12 a1 = a1 << 10
13 Console.WriteLine(a1)
15 End Sub
17 End Module