**** Merged from MCS ****
[mono-project.git] / mcs / btests / LogicalOperators1.vb
blobc12ccaca675c881bcdc6d000f9559160d8f118d5
2 Imports System
4 Module LogicalOperators1
5 Sub main()
7 Dim a1 As Boolean = True
8 Dim b1 As String = "xyz"
9 If a1 And b1 Then
10 a1 = False
11 End If
12 End Sub
13 End Module