Add another twist

This commit is contained in:
Zac Sweers
2020-01-18 23:10:40 -05:00
parent 3f0d763ce1
commit 76b4ec9f92

View File

@@ -126,7 +126,7 @@ abstract class Layer3<C, D> : Layer2<D>() {
}
@JsonClass(generateAdapter = true)
data class Layer4<E, F>(
data class Layer4<E : Personable, F>(
val layer4E: E,
val layer4F: F? = null
) : Layer3<List<Int>, String>(), LayerInterface<String>