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
/
cs0818.cs
blob
607373f93b0235311c168b983837915b2dcef2ad
1
// CS0818: An implicitly typed local variable declarator must include an initializer
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
var
v
;
10
}
11
}
12