this code throws the `NotImplementedError` since `...
# reflect
a
this code throws the
NotImplementedError
since
1.1.2
. Is this somewhere documented?
Copy code
test<Boolean>()

inline fun <reified T : Any> test() {
        when(T::class) {
            Boolean::class -> {}
            else -> throw NotImplementedError()
        }
    }
u