]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/26_numerics/random/pr60037-neg.cc
libstdc++: Fix undefined behaviour in random dist serialization (PR93205)
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / random / pr60037-neg.cc
1 // { dg-do compile { target c++11 } }
2 // { dg-require-cstdint "" }
3
4 #include <random>
5
6 std::mt19937 urng;
7
8 std::__detail::_Adaptor<std::mt19937, unsigned long> aurng(urng);
9
10 auto x = std::generate_canonical<std::size_t,
11 std::numeric_limits<std::size_t>::digits>(urng);
12
13 // { dg-error "static assertion failed: template argument must be a floating point type" "" { target *-*-* } 171 }
14
15 // { dg-error "static assertion failed: template argument must be a floating point type" "" { target *-*-* } 3281 }