blob: db1fd5ed1fc75ebc974ab0a4462be5d5a6453c7e [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class A {
external A();
}
class B {
external const B();
}
class C {
external C.named();
}
class D {
external const D.named();
}
class E {
external E() : super();
external E.redirect() : this();
}
class F {
external F() {
print("I have a body");
}
}