**** Merged from MCS ****
[mono-project.git] / mcs / btests / LikeOperator1.vb
blob11d4869720acb15de55135e0003099f44a9ba47b
2 Option Strict On
4 Imports System
6 Module LikeOperator1
7 Sub Main()
9 Dim a As Boolean
10 a = "HELLO" Like "H[A- Z][!M-P][!A-K]O"
11 If a <> True Then
12 Console.WriteLine("#A1-LikeOperator:Unexpected behaviour")
13 End If
15 End Sub
16 End Module