repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
dcs0165.cs
blob
9b610e49e28f51ee3841012edee691283f53bd00
1
// CS0165: Use of unassigned local variable `errors'
2
// Line: 9
3
// Compiler options: -langversion:future
4
5
class
T
6
{
7
static void
Main
()
8
{
9
dynamic
errors
;
10
errors
.
Call
();
11
}
12
}