aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-29.C
blob: f6cc6950ba7c03339c6b09a65d177bd9a6717f14 (plain)
1
2
3
4
5
6
7
8
9
10
// Origin: PR c++/52343
// { dg-do compile { target c++11 } }

template<typename>
using A = int;

template<template<class> class>
struct B {};

B<A> b;