dart-sdk/tests/language/duplicate_interface_negative_test.dart
hausner@google.com 43f8b613c8 Make dartium happy
Add library declarations in test scripts.
Review URL: https://codereview.chromium.org//12919010

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20168 260f80e4-7a28-3924-810f-c04153c831b5
2013-03-18 17:51:07 +00:00

21 lines
663 B
Dart

// Copyright (c) 2013, 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.
// Check fail because of cycles in super class relationship.
library duplicateInterfaceNegativeTest;
import "duplicate_interface_lib.dart" as alib;
import "duplicate_interface_lib.dart" show InterfA;
// Expect error since InterfA and alib.InterfA refer to the same interface.
class Foo implements InterfA, alib.InterfA { } /// compile-time error
main() {
Expect.isTrue(new Foo() is InterfA);
Expect.isTrue(new Foo() is alib.InterfA);
}