You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
119B

  1. #include <atomic>
  2. static int test()
  3. {
  4. std::atomic<long long> x;
  5. return x;
  6. }
  7. int main()
  8. {
  9. return test();
  10. }