Test cases for Type members and Like operator
[mono.git] / mcs / mbas / Test / tests / LikeOperatorC.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 'Option Compare text\r
7 Imports System\r
8 \r
9 Module LikeOperator2\r
10          Public Sub Main()\r
11                 dim a as boolean\r
12                 a = "" Like "[]"\r
13                 If a <> True Then\r
14                     Throw new System.Exception("#A1-LikeOperator:Failed")\r
15                 End If\r
16         end sub\r
17 End Module