summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-48.cs
blob: 83c6d2ede8a4d2aff11b2b1158956ef89c3204f2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0019: Operator `??' cannot be applied to operands of type `T' and `T' 
// Line: 8

class F
{
	T Bar<T> (T t)
	{
		return t ?? default(T);
	}
}