repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0582-2.cs
blob
23c9381773af3660fd36e0835b28ef138f2e53fd
1
// cs0582.cs: meth: Can not reference a type through an expression, try `test.meth' instead
2
// Line: 8
3
4
class
test2
:
test
{
5
int
meth
(
bool
b
)
6
{
7
return
1
;
8
base
.
meth
(
true
);
9
}
10
}
11
12
abstract class
test
{
13
public delegate void
meth
(
bool
b
) ;
14
}