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