// Generated from "j2ktnewobjcname/ConstructorExample.java"
@file:OptIn(ExperimentalObjCName::class)
@file:Suppress(
 "ALWAYS_NULL",
 "PARAMETER_NAME_CHANGED_ON_OVERRIDE",
 "SENSELESS_COMPARISON",
 "UNCHECKED_CAST",
 "UNNECESSARY_LATEINIT",
 "UNNECESSARY_NOT_NULL_ASSERTION",
 "UNREACHABLE_CODE",
 "UNUSED_ANONYMOUS_PARAMETER",
 "UNUSED_PARAMETER",
 "UNUSED_VARIABLE",
 "USELESS_CAST",
 "VARIABLE_IN_SINGLETON_WITHOUT_THREAD_LOCAL",
 "VARIABLE_WITH_REDUNDANT_INITIALIZER",
 "REDUNDANT_ELSE_IN_WHEN")

package j2ktnewobjcname

import javaemul.lang.*
import kotlin.Any
import kotlin.Int
import kotlin.OptIn
import kotlin.String
import kotlin.Suppress
import kotlin.experimental.ExperimentalObjCName
import kotlin.native.ObjCName

open class ConstructorExample {
 open class NotAnnotated {
  constructor()

  constructor(i: Int)

  constructor(i: Int, s: String?)

  constructor(i: Int, s: String?, id: Any?)
 }

 open class ExplicitParams {
  constructor()

  constructor(
   @ObjCName("Index") i: Int
  )

  constructor(
   @ObjCName("Index") i: Int,
   @ObjCName("withName") s: String?
  )

  constructor(
   @ObjCName("Index") i: Int,
   @ObjCName("withName") s: String?,
   @ObjCName("withObject") id: Any?
  )
 }

 open class ImplicitParams {
  constructor()

  constructor(
   @ObjCName("Int") i: Int
  )

  constructor(
   @ObjCName("Int") i: Int,
   @ObjCName("withNSString") s: String?
  )

  constructor(
   @ObjCName("Int") i: Int,
   @ObjCName("withNSString") s: String?,
   @ObjCName("withId") id: Any?
  )
 }
}
