// LANGUAGE_VERSION: 1.2 // PROBLEM: none // ERROR: Type mismatch: inferred type is Int but Array was expected annotation class Some(val arg: Array) fun create(x: Int) = x @Some(arg = create(123)) class My