openrewrite / rewrite-kotlin

Work-in-progress implementation of Kotlin language support for OpenRewrite.
Apache License 2.0
38 stars 11 forks source link

Idempotent print issue: On annotated type in function type parens. #557

Closed traceyyoshima closed 5 months ago

traceyyoshima commented 6 months ago
              @Target(AnnotationTarget.TYPE)
              @Retention(AnnotationRetention.SOURCE)
              annotation class Anno
              fun method ( ) {
                  val lambda : suspend ( @Anno Int ) -> Int = { number : Int -> number * number }
              }