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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0165-16.cs
blob
08041be09eb4e3a69660a59531f7ef537b2bf289
1
// Cs0165: Use of unassigned local variable `c'
2
// Line: 9
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
C c
;
9
c
.
ToString
();
10
}
11
}