(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / ConditionalCompilationD.vb
bloba7b267639f1b2e067435f05aa698cfc54d902032
1 Imports System
2 Module ConditionalCompilation
3 Sub Main()
4 'Testing line continuation within conditional compilation statement
5 Dim value As Integer
6 #If _
7 True
8 value=10
9 #Else _
12 Throw New Exception("#D11-Conditional Compilation: Failed")
13 #End If
15 If value<>10 Then
16 Throw New Exception("#D12-Conditional Compilation: Failed")
17 End If
18 End Sub
19 End Module