96b77b5be9
See long doc comment in namer.dart. BUG= R=floitsch@google.com Committed: https://code.google.com/p/dart/source/detail?r=43588 Reverted: https://code.google.com/p/dart/source/detail?r=43590 (to avoid rebase conflicts for people pushing to trunk) Committed: https://code.google.com/p/dart/source/detail?r=43724 Reverted: https://code.google.com/p/dart/source/detail?r=43739 (red bots) Review URL: https://codereview.chromium.org//891673003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44092 260f80e4-7a28-3924-810f-c04153c831b5
19 lines
458 B
Dart
19 lines
458 B
Dart
// Copyright (c) 2015, 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.
|
|
|
|
import 'package:expect/expect.dart';
|
|
import 'constructor_name_clash_lib.dart' as lib;
|
|
|
|
class A extends lib.A {
|
|
A() {
|
|
lib.global += 100;
|
|
try {} catch(e) {} // no inline
|
|
}
|
|
}
|
|
|
|
main() {
|
|
new A();
|
|
Expect.equals(110, lib.global);
|
|
}
|