Files
kotlin-fork/idea/testData/multiModuleQuickFix/createExpect/withAnnotations/header/My.kt.after
T
Dmitry Gridin b40a888f1d Formatter: fix line break between declarations with annotations
#KT-35093 Fixed
#KT-35106 Fixed
2019-11-26 19:40:51 +07:00

11 lines
177 B
Plaintext
Vendored

// My: to be implemented
// DISABLE-ERRORS
annotation class CommonAnnotation
expect class My {
tailrec fun foo(arg: Int): Int
@CommonAnnotation
fun initialize()
}