Commit 4430130d by Paolo Carlini Committed by Paolo Carlini

re PR c++/70563 (SFINAE fails when trying invalid template instantiation)

2018-05-08  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/70563
	* g++.dg/cpp0x/sfinae62.C: New.

From-SVN: r260030
parent f22d7973
2018-05-08 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/70563
* g++.dg/cpp0x/sfinae62.C: New.
2018-05-08 Richard Sandiford <richard.sandiford@linaro.org>
* gcc.target/aarch64/sve/vcond_6.c (LOOP): Unconditionally
......
// PR c++/70563
// { dg-do compile { target c++11 } }
template<typename... T> using void_t = void;
template<typename T> struct TemporaryBindObject
{
};
struct MyTrueType
{
static constexpr bool value = true;
};
struct MyFalseType
{
static constexpr bool value = false;
};
template<template<typename...> class Dest> struct TestValidBind
{
template<typename T, typename = void_t<>> struct toTypesOf : MyFalseType
{};
template<template<typename...> class Src, typename... Ts> struct toTypesOf<Src<Ts...>, void_t<Dest<Ts...,float>>> : MyTrueType
{};
};
template<typename T> struct OneParamStruct
{
};
template<typename T1, typename T2> struct TwoParamStruct
{
};
using tmp = TemporaryBindObject<int>;
int main()
{
bool value1 = TestValidBind<TwoParamStruct>::toTypesOf<TemporaryBindObject<int>>::value;
bool value2 = TestValidBind<OneParamStruct>::toTypesOf<TemporaryBindObject<int>>::value;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment