// Generated from "autovalue/AutoValue_EmptyAutoValue.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 autovalue.EmptyAutoValue
import kotlin.Any
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress

class AutoValue_EmptyAutoValue: EmptyAutoValue {
 private constructor()

 override fun toString(): String {
  return "EmptyAutoValue{" + "}"
 }

 override fun equals(o: Any?): Boolean {
  if (o === this) {
   return true
  }
  if (o is EmptyAutoValue) {
   return true
  }
  return false
 }

 override fun hashCode(): Int {
  val h___: Int = 1
  return h___
 }

 class Builder internal constructor(): autovalue.EmptyAutoValue.Builder() {
  override fun build(): EmptyAutoValue? {
   return AutoValue_EmptyAutoValue()
  }
 }
}
