blob: 5ecda4d112e919556dbcb812241182619c2594a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// PR c++/65513
// { dg-do compile { target c++11 } }
template <typename _Tp> struct atomic {
atomic() = default;
atomic(_Tp);
};
struct {
atomic<bool> bReadyToFlush;
}
LogThreadsleLogEntries[10]{};
|