Files
sdk/tests/language/issue21159_test.dart
T
zerny@google.com 6e3d80ab30 Fix failure reported by analyzer in test for issue 21159.
TBR=fschneider@google.com

Enable issue tests that appear to be incorrectly named.

BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41828 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-19 12:42:41 +00:00

26 lines
546 B
Dart

// Copyright (c) 2014, 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";
class C {
get call => this;
}
// Recurs outside the try-block to avoid disabling inlining.
foo() {
var c = new C();
c();
}
main() {
bool exceptionCaught = false;
try {
foo();
} on StackOverflowError catch (e) {
exceptionCaught = true;
}
Expect.equals(true, exceptionCaught);
}