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
2009-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0019-8.cs
blob
83c6d2ede8a4d2aff11b2b1158956ef89c3204f2
1
// CS0019: Operator `??' cannot be applied to operands of type `T' and `T'
2
// Line: 8
3
4
class
F
5
{
6
T Bar
<
T
> (
T t
)
7
{
8
return
t
??
default
(
T
);
9
}
10
}