Any way to keep a `val` / property reference when ...
# getting-started
d
Any way to keep a
val
/ property reference when using class delegation outside of the constructor? Example:
Copy code
class MyClass implements MyInterface by MyImplementation() {
    // How to keep a reference to MyImplementation ?
}