Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumKotlinreified type parametersSingle-choice MCQ

What happens at compile time if you try to take a reference to an inline function that has a `reified` parameter, e.g. `::isType`?

inline fun <reified T> isType(value: Any) = value is T val ref = ::isType // ?