``` abstract class Foo protected constructor() //...
# eap
k
Copy code
abstract class Foo protected constructor()

// warning "Protected function call from public-API inline function"
inline fun foo(f: () -> Unit) = object: Foo() {}
is this right?