[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0019-48.cs
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 }