(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / AssignmentStatementsC3.vb
blob500bd3e52de72a6df8ccb553a91f2deded8c514f
1 REM LineNo: 17
2 REM ExpectedError: BC30512
3 REM ErrorMessage: Option Strict On disallows implicit conversions
5 Option Strict On
6 Imports System
7 Imports Microsoft.VisualBasic
9 Module AssignmentStatementsC3
11 Sub main()
13 Dim b As Byte = 0
14 Dim i As Integer = 0
16 b += 1000
17 b += i
19 End Sub
21 End Module