blob: abdbefe599c1bb7ea78bdbf9fe45fd0922e54e8a [file] [log] [blame]
// Copyright (c) 2017, 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 double y
/// Extracted y value.
/// @description Checks that correct value is returned.
/// @author ngl@unipro.ru
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(double x, double y) {
Float64x2 fl64x2 = new Float64x2(x, y);
double v = fl64x2.y;
Expect.equals(y, v);
}
main() {
check(1.0, 2.0);
check(-1.0, 2.0);
check(3.1e+38, -2.1e-30);
check(1e-35, 2e+31);
}