blob: b4c6abc6e94fb99442dba7968c00c05b448104fb [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.
// Other-library declarations used by
// sealed_class_typedef_outside_of_library_test.dart.
import 'sealed_class_typedef_outside_of_library_lib2.dart';
sealed class SealedClass {
int foo = 0;
}
class A extends ATypeDef {}
class B implements ATypeDef {
int foo = 1;
}