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