// Generated from "autovalue/AutoValueWithFields.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 autovalue

import javaemul.lang.*
import java.io.Serializable
import javaemul.lang.annotations.WasAutoValue
import kotlin.Int
import kotlin.Long
import kotlin.Suppress
import kotlin.jvm.JvmField

@WasAutoValue
abstract class AutoValueWithFields internal constructor(): Parent(), Serializable {
 @JvmField
 internal var userField2_pp_autovalue: Int = 0

 abstract fun getIntField(): Int

 companion object {
  private const val serialVersionUID: Long = 42L

  private const val staticField: Long = 42L
 }
}

open class Parent internal constructor() {
 @JvmField
 internal var userField1_pp_autovalue: Int = 0

 companion object {
  private const val staticField: Long = 42L
 }
}
