K1:report warning on OptIn usages inside SAM constructor #KT-47708 Fixed

This commit is contained in:
Mikhail Glukhikh
2022-05-31 13:38:43 +02:00
committed by Space
parent 8fefa8a57b
commit 6fc27c22f4
4 changed files with 20 additions and 2 deletions
@@ -11,7 +11,7 @@ fun regressionTestOverrides() {
val anonymous: StableInterface = object : StableInterface {
override fun <!OPT_IN_OVERRIDE_ERROR!>experimentalMethod<!>() {} // correctly fails check
}
val lambda = StableInterface {} // this does not get flagged
val lambda = <!OPT_IN_USAGE!>StableInterface<!> {} // this does not get flagged
}
@ExperimentalKotlinAnnotation