Yes, but implementation would be more or less the ...
# language-proposals
o
Yes, but implementation would be more or less the same? You can’t make them real interfaces, e.g. if you have function and a call
Copy code
fun fn(value: Addable<Int>) = …

fn(1)
What instance would you pass into fn? You will need to create a wrapper type or something.