blob: af5000772d945519d15471337e30c18809127e2d [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 sealed classes to be extended, implemented, mixed in by
// multiple classes in the same library.
import "package:expect/expect.dart";
import 'sealed_class_typedef_lib.dart';
main() {
var a = A();
Expect.equals(0, a.foo);
var b = B();
Expect.equals(1, b.foo);
}