blob: 3fd59b1f720eaee5355786e5ac8739aba71827ff [file] [log] [blame]
// Copyright (c) 2013, 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.
import 'package:expect/expect.dart';
main() {
Expect.throwsUnsupportedError(() => double.infinity.round());
Expect.throwsUnsupportedError(() => double.negativeInfinity.round());
Expect.throwsUnsupportedError(() => double.nan.round());
}