blob: d54f1a40843b2609c20b82433c863bb7cd120030 [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.
// @dart = 2.9
/// @assertion int operator >>(int shiftAmount)
/// This operator implements bit-wise right-shift operation.
/// ...
/// It is an error if shiftAmount is negative.
/// @description Check that it is an error if shiftAmount is negative.
/// @author vasya
import "../../../Utils/expect.dart";
main() {
Expect.throws(() {100 >> (-1);}, (e) => e is ArgumentError);
}