Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0173-6.cs
blob6c2dab2672bb004b6a87ef8966ff58a59cf5a4ed
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `throw expression' and `throw expression'
2 // Line: 8
4 class C
6 public static void Test (bool b)
8 var s = b ? throw null : throw null;