(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / DoubleLiteralB.vb
blobefd003803887d8a935b73029a6c207e8a836a0ba
1 Imports System
2 Module DoubleLiteral
3 Sub Main()
4 Try
5 Dim a As Double=True
6 If a<>-1 Then
7 Console.WriteLine("DoubleLiteralB:Failed")
8 End If
11 Catch e As Exception
12 Console.WriteLine(e.Message)
13 End Try
14 End Sub
15 End Module