Add new internal annotation IntrinsicConstEvaluation

This commit is contained in:
Ivan Kylchik
2021-10-28 15:14:03 +03:00
committed by teamcity
parent 46dd6520af
commit 6f448820f0
4 changed files with 31 additions and 0 deletions
@@ -0,0 +1,6 @@
@kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CONSTRUCTOR, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY})
@kotlin.annotation.Retention(value = AnnotationRetention.BINARY)
@kotlin.SinceKotlin(version = "1.7")
public final annotation class IntrinsicConstEvaluation : kotlin.Annotation {
public constructor IntrinsicConstEvaluation()
}