do versions 33+ work w/ Kotlin 1.5? I’m getting a ...
# strikt
e
do versions 33+ work w/ Kotlin 1.5? I’m getting a compilation error:
Copy code
Overload resolution ambiguity: 
public fun <T : Any> Assertion.Builder<TypeVariable(T)>.isNotNull(): Assertion.Builder<TypeVariable(T)> defined in strikt.assertions
public fun <T> Assertion.Builder<TypeVariable(T)?>.isNotNull(): Assertion.Builder<TypeVariable(T)> defined in strikt.assertions
on
Copy code
expectThat(message.value().payload.template).isNotNull()
I think the issue is that
template
is a Java prop w/ unknown nullability. We might be able to add nullability annotations to those classes, though.