[amd64] Save missing register
[mono.git] / mcs / errors / cs0177-13.cs
1 // CS0177: The out parameter `baz' must be assigned to before control leaves the current method
2 // Line: 6
3
4 static class A
5 {
6         public static void Foo (int i, out object baz)
7         {
8                 switch (i) {
9                 case 0:
10                         baz = 1;
11                         return;
12                 }
13         }
14 }