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
/
gcs0453-4.cs
blob
748d235e1ec0c8f607bdce28a72dba018a80d23c
1
// CS0453: The type `T' must be a non-nullable value type in order to use it as type parameter `T' in the generic type or method `System.Nullable<T>'
2
// Line: 14
3
4
using
System
;
5
6
public static class
Nullable_Test
{
7
public static int
Compare
<
T
> (
Nullable
<
T
>
left
)
8
{
9
return
0
;
10
}
11
}