[AMDGPU] Don't unify divergent exit nodes with `musttail` calls (#126395)
[llvm-project.git] / libcxx / test / std / numerics / rand / rand.util / rand.util.seedseq / default.pass.cpp
blobc99d5e276b2b54bd5797b626f6eb97465e7c9fcf
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <random>
11 // class seed_seq;
13 // seed_seq();
15 #include <random>
16 #include <cassert>
18 #include "test_macros.h"
20 int main(int, char**)
22 ASSERT_NOEXCEPT(std::seed_seq());
24 std::seed_seq s;
25 assert(s.size() == 0);
28 return 0;