// Generated from "innerclassinheritance/MultipleNestings.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 innerclassinheritance

import javaemul.lang.*
import kotlin.Suppress

open class MultipleNestings {
 open fun funInM() {}

 open inner class Parent {
  open fun `fun`() {}
 }

 open inner class InnerClass1: MultipleNestings.Parent() {
  open fun funInI1() {}

  open inner class InnerClass2: MultipleNestings.Parent() {
   open fun funInI2() {}

   open fun test() {
    this.`fun`()
    this.`fun`()
    this@InnerClass1.`fun`()
    this@MultipleNestings.funInM()
    this@MultipleNestings.funInM()
    this@InnerClass1.funInI1()
    this@InnerClass1.funInI1()
    this.funInI2()
   }
  }
 }
}
