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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0165-14.cs
blob
cdacc8d79e670d1857e46c62b97508c3715560f1
1
// CS0165: Use of unassigned local variable `y'
2
// Line: 12
3
4
class
test
5
{
6
static void
Main
(
string
[]
args
)
7
{
8
{
9
int
x
=
8
;
10
}
11
string
y
;
12
args
[
0
] =
y
;
// use of unassigned variable y
13
}
14
}