[interp] run regression with all combinations of available optimizations (#17644)
[mono-project.git] / mcs / errors / cs0472-6.cs
blobd7d2556ef1c4d299acd4e347ff03fb4f3100e599
1 // CS0472: The result of comparing value type `int' with null is always `false'
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System;
7 class X
9 public static void Main ()
11 int i = 0;
12 var x = i == default (byte?);