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
/
cs1720-2.cs
blob
f63acd04f0c4645fe1eeea58a463a12b23e15c30
1
// CS1720: Expression will always cause a `System.NullReferenceException'
2
// Line: 9
3
// Compiler options: -warnaserror -warn:1
4
5
public class
Tester
6
{
7
public static void
GenericClass
<
T
>(
T t
)
where T
:
class
8
{
9
string
s
=
default
(
T
).
ToString
();
10
}
11
}