blob: 9db7ce8484c5eb29b1571b29a735f06af07fb276 [file]
// test.pkg.Foo
// WITH_STDLIB
// LIBRARY_PLATFORMS: JVM
package test.pkg
annotation class A
annotation class B
class Foo @A constructor(i: Int = 0) {
@JvmOverloads
@B
constructor(s: String = "", i: Int = 0): this(i)
}