8ce9b2d061
* Convert to block body: place @Suppress annotation before return expression #KT-34572 Fixed * Convert to block body: place annotations before return expression
12 lines
241 B
Kotlin
Vendored
12 lines
241 B
Kotlin
Vendored
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class ann
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class ann2
|
|
|
|
fun test() =<caret>
|
|
@ann
|
|
@ann2
|
|
1 |