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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0119-6.cs
blob
3ff883f952aed6d9195456a51aa65f88e9705d1d
1
// CS0119: Expression denotes a `variable', where a `type' or `method group' was expected
2
// Line: 10
3
4
delegate void
D
();
5
6
class
C
7
{
8
public void
Foo
(
int
i
)
9
{
10
D d
=
new
D
(
i
);
11
}
12
}