blob: 777ccda5a7b5d7b04e4051827b2d1983a2aca54f [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 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);
}