goog.module('boundedtypesupercall.Main.Bar.$1$impl');

const Foo = goog.require('boundedtypesupercall.Main.Foo$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

let Bar = goog.forwardDeclare('boundedtypesupercall.Main.Bar$impl');
let Comparable = goog.forwardDeclare('java.lang.Comparable$impl');

/**
 * @template T
 * @extends {Foo<T>}
 */
class $1 extends Foo {
 /** @protected @nodts */
 constructor() {
  super();
  /**@type {!Bar<T>} @nodts*/
  this.$outer_this__boundedtypesupercall_Main_Bar_1;
 }
 /** @nodts @template T @return {!$1<T>} */
 static $create__boundedtypesupercall_Main_Bar__java_lang_Comparable(/** !Bar<T> */ $outer_this, /** T */ $_0) {
  $1.$clinit();
  let $instance = new $1();
  $instance.$ctor__boundedtypesupercall_Main_Bar_1__boundedtypesupercall_Main_Bar__java_lang_Comparable__void($outer_this, $_0);
  return $instance;
 }
 /** @nodts */
 $ctor__boundedtypesupercall_Main_Bar_1__boundedtypesupercall_Main_Bar__java_lang_Comparable__void(/** !Bar<T> */ $outer_this, /** T */ $_0) {
  this.$outer_this__boundedtypesupercall_Main_Bar_1 = $outer_this;
  this.$ctor__boundedtypesupercall_Main_Foo__java_lang_Object__void($_0);
 }
 /** @override @nodts */
 m_foo__void() {}
 /** @nodts */
 static $clinit() {
  $1.$clinit = () =>{};
  $1.$loadModules();
  Foo.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof $1;
 }
 
 /** @nodts */
 static $loadModules() {}
}
$Util.$setClassMetadata($1, 'boundedtypesupercall.Main$Bar$1');

exports = $1;

//# sourceMappingURL=Main$Bar$1.js.map
