Add new error case
[mono.git] / mcs / btests / LikeOperatorC3.vb
1 REM LineNo: 13
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions from 'Integer' to 'String'.
4
5 Option Strict On
6
7 Imports System
8
9 Module LikeOperatorC1
10     Sub main()
11
12         Dim a As Boolean
13         a = 123 Like 123
14
15     End Sub
16
17 End Module