Zyle Moore
02/28/2026, 10:08 AMdata class ClassWithProp(
val prop: Prop
) {
interface Prop
}
data class ClassWithType<TProp : ClassWithType.Prop>(
val prop: TProp
) {
interface Prop
}Zyle Moore
02/28/2026, 10:13 AMdata class ClassWithType<TProp : Prop>(
val prop: TProp
) {
interface Prop
}Zyle Moore
02/28/2026, 9:30 PM