diff options
Diffstat (limited to 'src/boost/libs/units/test/fail_quantity_assign.cpp')
-rw-r--r-- | src/boost/libs/units/test/fail_quantity_assign.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/boost/libs/units/test/fail_quantity_assign.cpp b/src/boost/libs/units/test/fail_quantity_assign.cpp new file mode 100644 index 00000000..0f48bf21 --- /dev/null +++ b/src/boost/libs/units/test/fail_quantity_assign.cpp @@ -0,0 +1,36 @@ +// Boost.Units - A C++ library for zero-overhead dimensional analysis and +// unit/quantity manipulation and conversion +// +// Copyright (C) 2003-2008 Matthias Christian Schabel +// Copyright (C) 2008 Steven Watanabe +// +// Distributed under the Boost Software License, Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +/** +\file + +\brief fail_quantity_assign.cpp + +\details +Test assignment of quantity from different dimensions. + +Output: +@verbatim +@endverbatim +**/ + +#include <boost/units/quantity.hpp> +#include <boost/units/systems/si.hpp> + +namespace bu = boost::units; + +int main(int argc,char *argv[]) +{ + + const bu::quantity<bu::si::length> T1; + T1 = 2.0 * bu::si::seconds; + + return 0; +} |