[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git] / mcs / errors / cs0165-43.cs
blobb4762ab06bb1a4cacc22e38dc7167e7936c51ba2
1 // CS0165: Use of unassigned local variable `g'
2 // Line: 10
4 public class A
6 static bool Test7 ()
8 int f = 1;
9 int g;
10 return f > 1 && OutCall (out g) || g > 1;
13 static bool OutCall (out int arg)
15 arg = 1;
16 return false;