1 // PR c++/79592
2 // { dg-do compile { target c++11 } }
3 
4 struct pthread_mutex {
5   void *m_ptr;
6 };
7 
8 struct M {
9   pthread_mutex m = { ((void *) 1LL) }; // { dg-error "reinterpret_cast" }
10 };
11 
12 constexpr M m;			// { dg-error "M::M" }
13