David Kubecka
class MyService { fun Raise<MyError>.someMethod(): Int = 1 }
with(myService) { someMethod() }
context(_: MyError) fun someMethod(): Int = 1
Youssef Shoaib [MOD]
myService.someMethod
Raise<MyError>
context(_: Raise<MyError>) fun someMethod(): Int = 1
Riccardo Cardin
A modern programming language that makes developers happier.