Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / tests / gtest-140.cs
blobcd5198fb6101a42e57a193e9ae7f780307d97176
1 using System;
3 class X
5 public static void Main ()
7 int?[] bvals = new int?[] { null, 3, 4 };
8 foreach (long? x in bvals)
9 Console.WriteLine (x);