Updated project.
[mono.git] / mcs / btests / ConditionalCompilationC1.vb
1 'Line 9,  BC30648: String constants must end with a double quote.
2 'Line 14, BC30037: Character is not valid.
3
4 Imports System
5 Module ConditionalCompilation
6         Sub Main()
7                 'Syntactically wrong statement within #If block that satisfies the condition
8                 #If True
9                         Console.WriteLine("Hello)
10                 #End If
11
12                 'Lexically invalid statement within #If block that satisfies condition
13                 #If True
14                         @#$^**
15                 #End If
16                 
17                 'Lexically invalid statement within #If block that does not satisfies condition
18                 #If False
19                         DD@##$
20                 #End If
21                 
22         End Sub
23 End Module