[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0023-29.cs
blobaea3068addd76235a9e7672e450d814034bc0013
1 // CS0023: The `?' operator cannot be applied to operand of type `T'
2 // Line: 8
4 class X
6 static void Bug<T>(System.Func<T> func)
8 var r = func?.Invoke ();