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
/
cs0815-7.cs
blob
38c3ff3a3f095f816a63a71d9add07580cc96f85
1
// CS0815: An implicitly typed local variable declaration cannot be initialized with `(int, method group)'
2
// Line: 8
3
4
class
XX
5
{
6
public static void
Main
()
7
{
8
var
m
= (
1
,
Main
);
9
}
10
}