8ce9b2d061
* Convert to block body: place @Suppress annotation before return expression #KT-34572 Fixed * Convert to block body: place annotations before return expression
8 lines
138 B
Plaintext
Vendored
8 lines
138 B
Plaintext
Vendored
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class ann
|
|
|
|
fun foo(): Int {
|
|
@ann
|
|
return 1
|
|
} |