[AMDGPU] Don't unify divergent exit nodes with `musttail` calls (#126395)
[llvm-project.git] / libcxx / test / std / numerics / rand / rand.util / rand.util.seedseq / copy.compile.fail.cpp
blob7c3c38ea7a1dd94b0b831833d90ef8bef8ca251a
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>
17 int main(int, char**)
19 std::seed_seq s0;
20 std::seed_seq s(s0);
22 return 0;