blob: c2b06744b1d3bc8b36572661ed6b087f1f37c420 [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.
// SharedOptions=--enable-experiment=class-modifiers
// Allow typedef in different library, used by class in library.
import 'package:expect/expect.dart';
import 'base_class_typedef_outside_of_library_lib.dart';
main() {
Expect.equals(0, A().foo);
Expect.equals(1, B().foo);
}