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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0165-32.cs
blob
fb9652267c8976f546d2a05a8807ca70b48f141c
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 9
3
4
class
C
5
{
6
static void
Main
()
7
{
8
int
a
;
9
Foo
(
out
a
,
a
);
10
}
11
12
static void
Foo
(
out int
a
,
int
b
)
13
{
14
a
=
b
;
15
}
16
}