[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0165-33.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 13
3
4 using System;
5 using System.Diagnostics;
6
7 class C
8 {
9         static int Main ()
10         {
11                 int a;
12                 Foo (a = 9);
13                 return a;
14         }
15
16         [Conditional ("MISSING")]
17         static void Foo (int value)
18         {
19         }
20 }