85fff34818
Also include updated script from the RHEL tests and fixes for rawhide. Note: dependencies were configured for x86_64 only.
79 lines
1.0 KiB
C++
79 lines
1.0 KiB
C++
template <class T>
|
|
class X
|
|
{
|
|
T p;
|
|
public:
|
|
template <class U> auto f() -> decltype(+p) { return p; }
|
|
};
|
|
|
|
struct A
|
|
{
|
|
int i = 42;
|
|
};
|
|
|
|
struct B
|
|
{
|
|
int i = 42;
|
|
B() { }
|
|
B(int i): i(i) { }
|
|
};
|
|
|
|
template <class T, T t>
|
|
struct C
|
|
{
|
|
T m = t;
|
|
};
|
|
|
|
template <class T, T t>
|
|
struct D
|
|
{
|
|
T m = t;
|
|
D() { }
|
|
D(T m):m(m) { }
|
|
};
|
|
|
|
struct complex
|
|
{
|
|
typedef float value_type;
|
|
typedef __complex__ float _ComplexT;
|
|
|
|
constexpr complex(_ComplexT __z) : _M_value(__z) { }
|
|
|
|
constexpr complex(float __r = 0.0f, float __i = 0.0f)
|
|
: _M_value(__r + __i * 1.0f) { }
|
|
|
|
private:
|
|
_ComplexT _M_value;
|
|
};
|
|
|
|
constexpr complex c1;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
X<int>().f<int>();
|
|
A a1;
|
|
if (a1.i != 42) return 1;
|
|
A a2{};
|
|
if (a2.i != 42) return 2;
|
|
A a3[1];
|
|
if (a3[0].i != 42) return 3;
|
|
|
|
B b1;
|
|
if (b1.i != 42) return 3;
|
|
B b2 (24);
|
|
if (b2.i != 24) return 4;
|
|
|
|
C<int,3> c1;
|
|
if (c1.m != 3) return 5;
|
|
C<int,5> c2 {};
|
|
if (c2.m != 5) return 6;
|
|
|
|
D<int,3> d1;
|
|
if (d1.m != 3) return 7;
|
|
D<int,3> d2 (5) ;
|
|
if (d2.m != 5) return 8;
|
|
|
|
return 0;
|
|
}
|