updated test.sources
[mono.git] / mcs / btests / ConditionalCompilationC1.vb
1 Imports System
2 Module ConditionalCompilation
3         Sub Main()
4                 'Syntactically wrong statement within #If block that satisfies the condition
5                 #If True
6                         Console.WriteLine("Hello)
7                 #End If
8
9                 'Lexically invalid statement within #If block that satisfies condition
10                 #If True
11                         @#$^**
12                 #End If
13                 
14                 'Lexically invalid statement within #If block that does not satisfies condition
15                 #If False
16                         DD@##$
17                 #End If
18                 
19         End Sub
20 End Module