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
/
InheritanceC2.vb
blob
9d75923412d0eff955d2161a3c18a145c08673c3
1
REM LineNo: 10
2
REM ExpectedError: BC30683
3
REM ErrorMessage: 'Inherits' statement must precede all declarations in a class.
4
5
Public
Class C1
6
End
Class
7
8
Public
Class C2
9
Dim
a
As
String
10
Inherits C1
11
End
Class
12
13
Module
InheritanceC2
14
Sub
Main
()
15
End Sub
16
End Module