blob: 0fddb431f1117552f566cd875fba7b876d12f1e8 [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.
// Allow typedef interface classes to be extended and implemented by
// multiple classes in the same library.
import 'package:expect/expect.dart';
import 'interface_class_typedef_lib.dart';
main() {
Expect.equals(0, A().foo);
Expect.equals(1, B().foo);
}