simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr87012.C
blobfd3eea47c390b0cd7a8a098f073f4206991c9e85
1 // { dg-do compile { target c++11 } }
3 template<class T>
4 using ref = T&;
6 int x;
8 template<template<class> class T, T<int>>
9 struct X { };
11 struct Y : X<ref, x> { };