(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ConcatenationOperatorC2.vb
blob1befd6e53046cb70ae2f83513db46828fadc6edf
1 REM LineNo: 13
2 REM ExpectedError: BC30201
3 REM ErrorMessage: Expression expected.
5 Imports System
7 Module ConcatenationOperatorC1
8 Sub main()
9 Dim a As String = "Hello "
10 Dim b As String = "World"
12 Dim c As String
13 c = & b
15 c = a & b
16 If c <> "Hello World" Then
17 Console.WriteLine("#A1-Concatenation Failed")
18 End If
19 End Sub
21 End Module