Added LineNo, ExpectedError and ErrorMessage to all negative test case
[mono.git] / mcs / btests / ConditionalCompilationC3.vb
1 REM LineNo: 14
2 REM ExpectedError: BC30012
3 REM ErrorMessage: '#If' block must end with a matching '#End If'.\r
4
5
6
7 Imports System
8 Module ConditionalCompilation
9         Sub Main()
10                 #If False
11                         Console.WriteLine("Hello World 1")
12                 #End If
13
14                 #If True
15                         Console.WriteLine("Hello World 2")
16         End Sub
17 End Module