(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / AssignmentStatements2.vb
blob35ade6036353b883aa6c7a612a9357557e4acd97
1 ' System.InvalidCastException: Cast from string "Hello World" to type 'Integer' is not valid.
3 Imports System
5 Module AssignmentStatements2
7 Sub main()
8 Dim a As Integer
9 a = "Hello " + "World"
10 Console.WriteLine(a)
11 End Sub
13 End Module