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-17.cs
blob
d16156435bf92d295de8616770196fd68b9758a4
1
// CS0165: Use of unassigned local variable `t'
2
// Line: 8
3
4
public class
Foo
<
T
>
5
{
6
public static bool
Test
()
7
{
8
T t
;
9
return
t
is int
;
10
}
11
}