[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0173-5.cs
blobfd094cb87ee0957660a2700a283e23afec23cc22
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `dynamic' and `void'
2 // Line: 19
4 class X
6 static void Main ()
8 dynamic d = null;
9 dynamic t = true ? d : Main ();