blob: 76dd011ff78f7c2b763f76f8d972d9997b42fea5 [file] [log] [blame]
package kotlin
/**
* Specify that marked function is calculated in compile time and it result can be stored as "const val"
* Must be used only on built ins methods and further will be replaced with "constexpr" modifier
*/
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.BINARY)
public annotation class CompileTimeCalculation