blob: 93fc16a193886ad2a04551a14bb97a4a6c343883 [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);
}