view gcc/testsuite/g++.dg/cpp0x/variadic-ttp3a.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Test that passing a non-variadic template to a variadic TTP works
// with explicit template arguments in a function call..
// { dg-do compile { target c++11 } }

template<template<typename...> class Property,
	 typename Type1, typename... Types>
bool test_property(typename Property<Type1, Types...>::value_type value);

template <class T>
struct X
{
  using type = X;
  using value_type = int;
  static const value_type value = 42;
};

int main()
{
  test_property<X,int>(42);
}