[Mono.Profiler.Log] Reverse managed backtrace in SampleHitEvent's
[mono.git] / mcs / errors / cs0023-28.cs
1 // CS0023: The `?' operator cannot be applied to operand of type `T'
2 // Line: 13
3
4 interface IFoo<T>
5 {
6         T Call ();
7 }
8
9 class C1
10 {
11         U Foo<T, U> (IFoo<T> t)
12         {
13                 return t?.Call ();
14         }
15 }