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