**** Merged from MCS ****
[mono-project.git] / mcs / btests / ConditionalCompilation.vb
blob310b08d8a85ef2311e59a34f2a3c0223ddaf2953
1 Imports System
2 Module ConditionalCompilation
3 Sub Main()
4 Try
5 'Using syntatically wrong statements inside a #If block that does not satisfy condition
6 #If False
7 Console.WriteLine("Hello)
8 #End If
9 Catch e As Exception
10 Console.WriteLine(e.Message)
11 End Try
12 End Sub
13 End Module