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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0165-51.cs
blob
bce82c61b55eaddfe86fc8bceec9ff8bc09473d0
1
// CS0165: Use of unassigned local variable `s'
2
// Line: 12
3
// Compiler options: -r:CS0165-51-lib.dll
4
5
using
System
;
6
7
class
C
<
T
>
where T
:
class
8
{
9
public static void
Foo
()
10
{
11
S
<
T
>
s
;
12
Console
.
WriteLine
(
s
);
13
}
14
}