using System; public class Test { static void a(int x){} static void a(ref int x){} public static void Main() { int b=5; a(b); a(ref b); } }