dart-sdk/tests/language/private_mixin_exception_throw_test.dart
iposva@google.com 4e96a9bfef Fix bug 11637:
- Handle repeated private name mangling which can been introduced
  with mixins.

R=rmacnak@google.com

Review URL: https://codereview.chromium.org//18234006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@24712 260f80e4-7a28-3924-810f-c04153c831b5
2013-07-03 01:37:02 +00:00

25 lines
531 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.
// Regression test for http://dartbug.com/11637
class _C {}
class _E {
throwIt() => throw "it";
}
class _F {
throwIt() => throw "IT";
}
class _D extends _C with _E, _F {}
main() {
var d = new _D();
try {
d.throwIt();
} catch (e, s) {
print("Exception: $e");
print("Stacktrace:\n$s");
}
}