blob: e4faa4ac5fba6cd57f08b0e12ed6b0145a0d5722 [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 It is a compile-time error if an expression of the form throw;
* is not enclosed within an on-catch clause.
* @note the assertion in no longer in spec, though it should be compile-error
* to use throw with no expression.
* @description Checks that it is a compile-time error when a statement of the form "throw;"
* is used outside of a catch clause.
* @compile-error
* @author vasya
* @reviewer rodionov
* @reviewer iefremov
*/
main() {
try {
throw;
} catch(e) {}
}