trait T { fun foo(a:Int = 1) } class C : T { override fun foo(a: Int) { throw UnsupportedOperationException() } }