[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0177-13.cs
blobb655a659c817f1afa1354bc428d9e1bff77db7cd
1 // CS0177: The out parameter `baz' must be assigned to before control leaves the current method
2 // Line: 6
4 static class A
6 public static void Foo (int i, out object baz)
8 switch (i) {
9 case 0:
10 baz = 1;
11 return;