add opensuse toolchain support, patch by Ismail Donmez!
[clang/stm8.git] / test / SemaTemplate / alias-template-template-param.cpp
bloba847b0672a2a8c8f1285483f653e5a9d11d416a2
1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
3 template<template<typename> class D> using C = D<int>;
5 // Substitution of the alias template transforms the TemplateSpecializationType
6 // 'D<int>' into the DependentTemplateSpecializationType 'T::template U<int>'.
7 template<typename T> void f(C<T::template U>);