8fc30896db
Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
13 lines
184 B
C#
13 lines
184 B
C#
class Program
|
|
{
|
|
static int x;
|
|
static int y;
|
|
|
|
public static int Main ()
|
|
{
|
|
bool b = false;
|
|
ref int targetBucket = ref b ? ref x : ref y;
|
|
|
|
return 0;
|
|
}
|
|
} |