Files
kotlin/plugins/scripting/scripting-compiler/testData/compiler/compileTimeFibonacci/supported.fib.kts
Mathias Quintero 83087291df Add API to get locations of collected script annotations
#KT-38404 fixed

also:
- Add wrapper class for the location combined with the location id
- Add source code location parameters to external dependency resolvers
- Add tests for locations in annotations
- Add tests for order of annotation resolution for dependencies resolvers
2020-06-10 16:28:41 +02:00

7 lines
122 B
Kotlin
Vendored

@file:Fib(4)
println("fib(1)=${FIB_1}")
println("fib(2)=${FIB_2}")
println("fib(3)=${FIB_3}")
println("fib(4)=${FIB_4}")