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-19.cs
blob
3a9e7ef04a72314e1ef04401c6a5f031a27d3038
1
// CS0165: Use of unassigned local variable `s'
2
// Line: 10
3
// Compiler options: -r:CS0165-19-lib.dll
4
5
class
Program
6
{
7
static void
Main
()
8
{
9
S s
;
10
s
.
Test
();
11
}
12
}