blob: e269698205b9fe3b3e09bef5bac145c59eee40ec [file] [log] [blame]
// Copyright (c) 2022, 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 {
A(num a);
}
class B extends A {
B.sub1(int super.a1);
B.sub2(double super.a2);
}
main() {}