Are there any plans to support generic values for ...
# kotlin-roadmap
e
Are there any plans to support generic values for inline classes? At the moment,
Copy code
@JvmInline value class Foo<T>(foo: T)
is valid but
Copy code
@JvmInline value class Foo<T>(foo: Bar<T>)
is not.