(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / CommentC1.vb
blob17e7df164322f9547b890a1f2f3bd79168ffd25e
1 REM LineNo: 12
2 REM ExpectedError: BC30451
3 REM ErrorMessage: Name 'comment' is not declared.
5 Imports System
7 Module M
8 Sub Main()
9 Dim b As IntegerREM : Dim c As Integer = 10
10 Dim a As Integer = 10
11 Console.WriteLine(a) 'Line Continuation within _
12 comment
13 End Sub
14 End Module
16 Class B
17 End Class
19 Class IntegerREM : Inherits B
20 End Class