On the 1.0.0 beta release notes, it says this:
Type parameters for properties are prohibited unless they are used in the receiver typeCan I get an example of what that means? I'm having a problem with some code I had (which I knew it was going to break at some point :D) with this exact same error.
Basically, I had
private val <T, L> myVal : Map<Class<T>, SomeClass<T, L>>;
...which I know has problems, but for now I just want to know *when* you can actually have type parameters on properties.
Thanks