a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
215 B
C#
16 lines
215 B
C#
public class A
|
|
{
|
|
public static bool TryAssign (out int x)
|
|
{
|
|
x = 0;
|
|
return true;
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
int x, y;
|
|
if ((!TryAssign (out x) || x == 0) & (!TryAssign (out y) || y == 0)) {
|
|
}
|
|
}
|
|
}
|