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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0019-48.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
}