The following code will trigger [`ComposeUnstableReceiver`](https://slackhq.github.io/compose-lints/rules/#unstable-receivers) when running with this configuration: - Kotlin 2.0.0-RC1 - K2 UAST (`android.lint.useK2Uast=true`) - Lint 8.5.0-alpha04 and above (`-Pandroid.experimental.lint.version=8.5.0-alpha04`) (worked fine on `alpha03`) ```kotlin import androidx.compose.ui.graphics.Color public val Color.transparent: Color @Composable get() = this.copy(alpha = 0f) ```