2 // This tests the ref access to parameters
8 static void A (ref int a
, ref uint b
, ref sbyte c
, ref byte d
, ref long e
, ref ulong f
,
9 ref short g
, ref ushort h
, ref char i
, ref X x
, ref float j
, ref double k
)
47 public static int Main ()
62 A (ref a
, ref b
, ref c
, ref d
, ref e
, ref f
, ref g
, ref h
, ref i
, ref x
, ref j
, ref k
);
89 Console
.WriteLine ("Test passed");