blob: c727b8c581eb0b64b416e30559bcc22bd9bae058 [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 This operator implements the arithmetic division operation.
* @description Checks that division by zero yields correct results (infinities and NaN).
* @author msyabro
* @reviewer rodionov
*/
import "../../../Utils/expect.dart";
main() {
Expect.equals(double.INFINITY, 1 / 0);
Expect.equals(double.NEGATIVE_INFINITY, -2 / 0);
Expect.isTrue((0 / 0).isNaN);
}