codeowners update
[mono.git] / mcs / errors / cs0173-5.cs
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `dynamic' and `void'
2 // Line: 19
3
4 class X
5 {
6         static void Main ()
7         {
8                 dynamic d = null;
9                 dynamic t = true ? d : Main ();
10         }
11 }