1 // CS0177: The out parameter `val' must be assigned to before control leaves the current method
6 public bool GetValue (out int val
)
12 public void ReallyGetValue (out int val
)
14 if (AlwaysReturnTrue () || GetValue (out val
)) {
18 public bool AlwaysReturnTrue ()