Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0173-6.cs
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `throw expression' and `throw expression'
2 // Line: 8
3
4 class C
5 {
6         public static void Test (bool b)
7         {
8                 var s = b ? throw null : throw null;
9         }
10 }