blob: a7c8935c4d8a188c9268ab5ce8d16341144efdb1 [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 The throw expression is used to raise an exception.
/// throwExpression:
/// throw expression
/// ;
/// throwExpressionWithoutCascade:
/// throw expressionWithoutCascade
/// ;
/// @description The grammar does not allow throw with no expression. Checks
/// that this is a compile-error.
/// @author ilya
main() {
try {
} catch (e) {
throw;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
}