blob: 3983163efd60b7b8ed9c54925bb4b44fa0eaa8ca [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion Execution of the body terminates when the first of
* the following occurs:
* An uncaught exception is thrown.
* A return statement immediately nested in the body of f is executed.
* The last statement of the body completes execution.
* @description Checks that execution of a function body terminates after
* an uncaught exception is thrown.
* @author msyabro
* @reviewer kaigorodov
*/
import "../../Utils/expect.dart";
int x;
void f() {
throw "Some exception";
x = 1;
}
main() {
try {
f();
}catch(e) {
Expect.isNull(x);
}
}