libstdc++: Add missing constexpr to __atomic_impl::__clear_padding
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ctor1.C
blobe813d20b15b0640afecfe415f9980111ea00b7ff
1 // { dg-do run  }
2 // { dg-additional-sources " ctor1-aux.cc" }
4 // Origin: Mark Mitchell <mark@codesourcery.com>
6 template <class T>
7 struct S {
8   template <class U>
9   S (U);
12 template <class T>
13 template <class U>
14 S<T>::S (U) {}
16 template S<int>::S (double);