Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0165-33.cs
blob16afc7db6f60c20c933045d470c5da9a80781dbb
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 13
4 using System;
5 using System.Diagnostics;
7 class C
9 static int Main ()
11 int a;
12 Foo (a = 9);
13 return a;
16 [Conditional ("MISSING")]
17 static void Foo (int value)