2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / rerrors / Test / AssignmentStatements2.vb
1 ' System.InvalidCastException: Cast from string "Hello World" to type 'Integer' is not valid.
2                                                                                 
3 Imports System
4 Imports Nunit.Framework
5                                                                                 
6 <TestFixture> _
7 Public Class AssignmentStatements2
8 Inherits SystemException
9                 <Test, ExpectedException (GetType (System.FormatException))> _
10                 Public Sub TestForFormat ()
11                         Dim a As Integer
12                         a = "Hello"  + "World"
13                                                                                 
14             End Sub
15 End Class
16