Hi all. I previously filed this <issue> on compose...
# multiplatform
x
Hi all. I previously filed this issue on compose-multiplatform repo that prevents us from defining reified inline functions on
commonMain
Copy code
@Composable
inline fun <reified T : Instance> rememberOnRoute(
  key: Any = T::class.key,
  ..
): T { .. }
throws when building for native with
Copy code
error: Compilation failed: Generation of stubs for class org.jetbrains.kotlin.ir.symbols.impl.IrTypeParameterPublicSymbolImpl is not supported yet

 * Source files: 
 * Compiler version: 1.9.0
 * Output kind: FRAMEWORK
As of kotlin 1.9 this still seems to be not implemented 🤔 Am I the only one to come across this? Seems to be an issue on the compiler and can't find any issue on the kotlin issue tracker for this.