2015-03-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/65513 * g++.dg/cpp0x/constexpr-array11.C: New. From-SVN: r221620
14 lines
208 B
C
14 lines
208 B
C
// PR c++/65513
|
|
// { dg-do compile { target c++11 } }
|
|
|
|
template <typename _Tp> struct atomic {
|
|
atomic() = default;
|
|
atomic(_Tp);
|
|
};
|
|
|
|
struct {
|
|
atomic<bool> bReadyToFlush;
|
|
}
|
|
|
|
LogThreadsleLogEntries[10]{};
|