1 2 3 4 5 6 7 8 9
// CS1763: Optional parameter `o' of type `object' can only be initialized with `null' // Line: 6 class C { public static void Test (object o = 9, params object[] args) { } }