0de315c146
Change-Id: I6e4a05911c77d26f1fb440ec8e90c13e783926e9 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192147 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
20 lines
409 B
Dart
20 lines
409 B
Dart
// 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.
|
|
|
|
// @dart=2.9
|
|
|
|
import 'duplicated_bad_prefix_lib1.dart' as dupe;
|
|
import 'duplicated_bad_prefix_lib2.dart' as dupe;
|
|
|
|
class Dupe {}
|
|
|
|
class Dupe {}
|
|
|
|
class C {
|
|
Dupe.a b;
|
|
dupe.C d;
|
|
}
|
|
|
|
main() {}
|