(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / rerrors / AssignmentStatements3.vb
blobd2607648f43887afbaf72744af29c3e6e36a1bd9
1 ' ErrorMessage: System.OverflowException: Arithmetic operation resulted in an overflow.
3 Imports System
5 Module AssignmentStatements3
7 Sub main()
9 Dim b As Byte = 0
10 b += 1000
11 If b <> 1000 Then
12 Throw New Exception("#AS3-Assignment Statement Failed")
13 End If
15 End Sub
18 End Module