[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0023-27.cs
blob068c08a072c6e450377c7ca377641078446be14e
1 // CS0023: The `?' operator cannot be applied to operand of type `T'
2 // Line: 11
4 class C2<T>
6 C2<T> i;
7 T field;
9 public void Foo ()
11 var x = i?.field;