linux-packaging-mono/mcs/tests/test-ref-11.cs

13 lines
184 B
C#
Raw Normal View History

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;
}
}