goog.module('accidentaloverride.AnotherAccidentalOverride$impl');

const Parent = goog.require('accidentaloverride.Parent$impl');
const SuperInterface = goog.require('accidentaloverride.SuperInterface$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

let AssertionError = goog.forwardDeclare('java.lang.AssertionError$impl');
let $Casts = goog.forwardDeclare('vmbootstrap.Casts$impl');

/**
 * @extends {Parent<AssertionError>}
 * @implements {SuperInterface<AssertionError>}
 */
class AnotherAccidentalOverride extends Parent {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!AnotherAccidentalOverride} */
 static $create__() {
  AnotherAccidentalOverride.$clinit();
  let $instance = new AnotherAccidentalOverride();
  $instance.$ctor__accidentaloverride_AnotherAccidentalOverride__void();
  return $instance;
 }
 /** @nodts */
 $ctor__accidentaloverride_AnotherAccidentalOverride__void() {
  this.$ctor__accidentaloverride_Parent__void();
 }
 //Bridge method.
 /** @final @override @nodts */
 m_bar__java_lang_Object__void(/** AssertionError */ arg0) {
  this.m_bar__java_lang_Error__void(/**@type {AssertionError}*/ ($Casts.$to(arg0, AssertionError)));
 }
 //Bridge method.
 /** @final @override @nodts */
 m_foo__java_lang_Object__void(/** AssertionError */ arg0) {
  this.m_foo__java_lang_Error__void(/**@type {AssertionError}*/ ($Casts.$to(arg0, AssertionError)));
 }
 //Specialized bridge method.
 /** @nodts */
 m_bar__java_lang_AssertionError__void(/** AssertionError */ arg0) {
  super.m_bar__java_lang_Error__void(arg0);
 }
 //Specialized bridge method.
 /** @nodts */
 m_foo__java_lang_AssertionError__void(/** AssertionError */ arg0) {
  super.m_foo__java_lang_Error__void(arg0);
 }
 /** @nodts */
 static $clinit() {
  AnotherAccidentalOverride.$clinit = () =>{};
  AnotherAccidentalOverride.$loadModules();
  Parent.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof AnotherAccidentalOverride;
 }
 
 /** @nodts */
 static $loadModules() {
  AssertionError = goog.module.get('java.lang.AssertionError$impl');
  $Casts = goog.module.get('vmbootstrap.Casts$impl');
 }
}
SuperInterface.$markImplementor(AnotherAccidentalOverride);
$Util.$setClassMetadata(AnotherAccidentalOverride, 'accidentaloverride.AnotherAccidentalOverride');

exports = AnotherAccidentalOverride;

//# sourceMappingURL=AnotherAccidentalOverride.js.map
