[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0165-43.cs
1 // CS0165: Use of unassigned local variable `g'
2 // Line: 10
3
4 public class A
5 {
6         static bool Test7 ()
7         {
8                 int f = 1;
9                 int g;
10                 return f > 1 && OutCall (out g) || g > 1;
11         }
12
13         static bool OutCall (out int arg)
14         {
15                 arg = 1;
16                 return false;
17         }
18 }