blob: 50aca9af525e7326b9ab4a0492861c0f61f70b56 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion It is a compile-time error if a name N is re-exported by a library
* L and N is introduced into the export namespace of L by more than one export.
* @description Checks that it is a compile-time error if this library imports
* another which re-exports two more libraries defining the same name and that
* name is referenced in this library.
* @compile-error
* @author rodionov
* @issue 6134
*/
import "reexport_lib.dart";
main() {
1 is foo;
}