blob: 61ead3071e8c0a3d289a61eb65585e19f5d34052 [file] [log] [blame]
// Copyright (c) 2018, 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.
// This test checks that a cyclic dependence is not reported twice in case the
// class declarations from the cycle are in different libraries, but have the
// same name within their respective libraries.
import './non_simple_many_libs_same_name_cycle_lib.dart' as lib;
class A<TypeX extends lib.A> {}
typedef C<TypeX extends lib.C> = int;
main() {}