Updated project.
[mono.git] / mcs / btests / ShiftOperators1.vb
1 'Unhandled Exception: System.InvalidCastException: Cast from string \r
2 ' to type 'Long' is not valid. ---> System.FormatException: Input string was not in a\r
3 ' correct format.\r
4 ' Strict On disallows implicit conversions from double to long\r
5 \r
6 'Option Strict On\r
7 Imports System\r
8 \r
9 Module ShiftOperators1\r
10 \r
11     Sub Main()\r
12 \r
13         Dim b1 As String = "xyz"\r
14         b1 = b1 << 109\r
15         Console.WriteLine(b1)\r
16 \r
17     End Sub\r
18 \r
19 End Module