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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0119-8.cs
blob
7b7f14bf72a21406e4565859ce5f54131bcc361d
1
// CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2
// Line: 10
3
4
class
A
5
{
6
delegate string
Test
(
string
t
);
7
8
public static void
Main
()
9
{
10
Test
(
"t"
);
11
}
12
}