(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / LikeOperatorC3.vb
blob5a90bed87dbb9846ddecaa45299eea8c99a9cf7a
1 REM LineNo: 13
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions from 'Integer' to 'String'.
5 Option Strict On
7 Imports System
9 Module LikeOperatorC1
10 Sub main()
12 Dim a As Boolean
13 a = 123 Like 123
15 End Sub
17 End Module