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
/
cs0165-30.cs
blob
c800affb13047f73bc151046d096d69fd0f62964
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 9
3
4
using
System
;
5
6
class
Test
{
7
8
static void
Main
() {
9
Action a
= () =>
a
();
10
}
11
}