orangy
@Deprecated("Library has been generalised to accept Strings", ReplaceWith("foo(i.toString())")) fun foo(i:Int) = foo(i.toString()) fun foo(s:String) {} fun test() { foo(1) }