// Generated from "subnativejstype/SubNativeJsType.java"
@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 subnativejstype

import javaemul.lang.*
import jsinterop.annotations.JsConstructor
import jsinterop.annotations.JsType
import kotlin.Int
import kotlin.Suppress

@JsType(namespace = "test.foo", isNative = true)
open class MyNativeJsType {
 constructor(x: Int)
}

open class SubNativeJsType: MyNativeJsType {
 @JsConstructor
 constructor(x: Int): super(
  x + 1,
 )

 constructor(): this(10)
}
