[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8326.cs
blobefd3a84fea7519056b7eeb87c46ab12782b0be1a
1 // CS8326: Both ref conditional operators must be ref values
2 // Line: 11
4 class Program
6 static int x, y;
8 public static void Main ()
10 bool b = false;
11 ref int targetBucket = ref b ? x : y;