43d31a5a78
BUG= Review URL: https://codereview.chromium.org//58973003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29901 260f80e4-7a28-3924-810f-c04153c831b5
24 lines
883 B
Dart
24 lines
883 B
Dart
// Copyright (c) 2012, 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 should fail to load because we are importing two libraries
|
|
// which define the same top level name foo, and we are referring to the name.
|
|
|
|
import "library1.dart"; // Defines top level variable 'foo'
|
|
import "library2.dart"; // Defines top level variable 'foo'
|
|
|
|
class X
|
|
extends baw /// 05: compile-time error
|
|
{}
|
|
|
|
main() {
|
|
print(foo); /// 00: runtime error
|
|
print(bar()); /// 01: runtime error
|
|
print(baz()); /// 02: runtime error
|
|
print(bay()); /// 03: runtime error
|
|
print(main is bax); /// 04: static type warning, runtime error
|
|
var x = new X(); /// 05: continued
|
|
print("No error expected if ambiguous definitions are not used.");
|
|
}
|