blob: 358eccc410bb1acdeb7775683352b2a2674911af [file] [log] [blame] [edit]
// Copyright (c) 2026, 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.
library test.qualified.lib;
import "qualified_2.dart" as main;
class C<T> extends main.C<T> {
C();
C.a();
factory C.b() = C<T>.a;
}
class Supertype {
supertypeMethod() {
print("I'm supertypeMethod form lib.Supertype");
}
}
mixin Mixin {
foo() {
print("I'm Mixin.foo");
}
}
typedef VoidFunction = void Function();