public final class AnnotationParametersKt { @RequiresPermission(anyOf = intArrayOf(1, 2, 3)) @IntRange(from = 10, to = 0) @WithDefaultValue @SuppressLint(value = "Lorem") public static final fun foo() : int = 5 @IntRange(from = 0, to = 100) @SuppressLint(value = ("Lorem", "Ipsum", "Dolor")) public static final fun bar() : void = Unit } public abstract annotation IntRange { public abstract fun from() : long = UastEmptyExpression public abstract fun to() : long = UastEmptyExpression } public abstract annotation RequiresPermission { public abstract fun anyOf() : int[] = UastEmptyExpression } public abstract annotation WithDefaultValue { public abstract fun value() : int = UastEmptyExpression } public abstract annotation SuppressLint { public abstract fun value() : java.lang.String[] = UastEmptyExpression }