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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0572-2.cs
blob
cf09dfcaa37403a037c597d1a88b89b2b18b1b84
1
// CS0572: `meth': cannot reference a type through an expression. Consider using `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
}