Included the newly added pre-processor test cases
[mono.git] / mcs / btests / ConditionalCompilationC3.vb
1 'Line 10, BC30012: '#If' must end with a matching '#EndIf'
2
3 Imports System
4 Module ConditionalCompilation
5         Sub Main()
6                 #If False
7                         Console.WriteLine("Hello World 1")
8                 #End If
9
10                 #If True
11                         Console.WriteLine("Hello World 2")
12         End Sub
13 End Module