brintos

brintos / llvm-project-archived public Read only

0
0
Text · 345 B · 0b17d10 Raw
9 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s2// expected-no-diagnostics3 4template<template<typename> class D> using C = D<int>;5 6// Substitution of the alias template transforms the TemplateSpecializationType7// 'D<int>' into the DependentTemplateSpecializationType 'T::template U<int>'.8template<typename T> void f(C<T::template U>);9