blob: fd3eea47c390b0cd7a8a098f073f4206991c9e85 [file] [log] [blame]
// { dg-do compile { target c++11 } }
template<class T>
using ref = T&;
int x;
template<template<class> class T, T<int>>
struct X { };
struct Y : X<ref, x> { };