// Generated from "collisions/goog.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 collisions

import javaemul.lang.*
import kotlin.Double
import kotlin.Int
import kotlin.Number
import kotlin.Suppress
import kotlin.jvm.JvmStatic

open class goog

// native class KtBlah

open class KtBlah internal constructor() {
 companion object {
  @JvmStatic
  internal fun m() {}

  @JvmStatic
  internal fun getN(): Double {
   return 1.0
  }
 }
}

open class foo internal constructor()

open class bar internal constructor() {
 init {
  val foo: Int = 0
  val bar: Int = 0
  val goog: Int = 0
  val flip: Int = 0
  val window: Int = 0
  KtBlah.m()
  KtBlah.getN()
  KtBlah()
  collisions.goog()
  collisions.foo()
  val delete: Int = 1
  val undefined: Int = 3
 }
}

open class Other<T> internal constructor() {
 init {
  val T_1: Int = 3
  val o: Other<T>? = null as Other<T>?
 }

 internal open fun <T_2> m_pp_collisions(): T_2 {
  val T_1: Int = 5
  val o: Other<T_2>? = null as Other<T_2>?
  return null as T_2
 }
}

open class T<T: Number?> internal constructor() {
 internal open fun m_pp_collisions(): T {
  return null as T
 }

 internal open fun n_pp_collisions(): T {
  val t: T? = collisions.T<T>().m_pp_collisions()
  t!!.toByte()
  return t as T
 }
}
