(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / SingleLiteral1.vb
blob5b1533ecd272202123a73013544999da27aecf03
1 REM LineNo: 9
2 REM ExpectedError: BC30036
3 REM ErrorMessage: Overflow.
5 Imports System
6 Module SingleLiteral
7 Sub Main()
8 Try
9 Dim a As Single=1.23E+40F
10 Dim b As Single
11 b="Hello"
12 Catch e As Exception
13 Console.WriteLine(e.Message)
14 End Try
15 End Sub
16 End Module