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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0165-43.cs
blob
b4762ab06bb1a4cacc22e38dc7167e7936c51ba2
1
// CS0165: Use of unassigned local variable `g'
2
// Line: 10
3
4
public class
A
5
{
6
static bool
Test7
()
7
{
8
int
f
=
1
;
9
int
g
;
10
return
f
>
1
&&
OutCall
(
out
g
) ||
g
>
1
;
11
}
12
13
static bool
OutCall
(
out int
arg
)
14
{
15
arg
=
1
;
16
return false
;
17
}
18
}