repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2004-11-07 Ben Maurer <bmaurer@ximian.com>
[mono-project.git]
/
mcs
/
btests
/
CommentC1.vb
blob
17e7df164322f9547b890a1f2f3bd79168ffd25e
1
REM LineNo: 12
2
REM ExpectedError: BC30451
3
REM ErrorMessage: Name 'comment' is not declared.
4
5
Imports System
6
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
15
16
Class B
17
End
Class
18
19
Class IntegerREM
:
Inherits B
20
End
Class