1 2 3 4 5 6 7 8 9
// CS1737: Optional parameter cannot precede required parameters // Line: 6 class C { public static void Test (byte a = 1, int u) { } }