Home
last modified time | relevance | path

Searched refs:TemplateCtors (Results 1 – 1 of 1) sorted by relevance

/external/clang/test/CXX/special/class.inhctor/
Dp2.cpp90 struct TemplateCtors { struct
91 constexpr TemplateCtors() {} in TemplateCtors() argument
92 template<template<int> class T> TemplateCtors(X<0>, T<0>);
93 template<int N> TemplateCtors(X<1>, X<N>);
94 template<typename T> TemplateCtors(X<2>, T);
96 …template<typename T = int> TemplateCtors(int, int = 0, int = 0); // expected-note {{inherited from…
99 struct UsingTemplateCtors : TemplateCtors { // expected-note 2{{candidate is the implicit}}
100 using TemplateCtors::TemplateCtors; // expected-note 4{{here}} expected-note {{candidate}}