(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / BoolLiteralTest.vb
blobf4d51366992caca947d7c4eb30dc07792a636c22
1 Imports System
2 Module BoolLiteralTest
3 Sub main()
4 Try
5 Dim b As Boolean
6 b = True
7 b = False
8 Catch e As Exception
9 Console.WriteLine(e.Message)
10 End Try
11 End Sub
12 End Module