repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr87012.C
blob
fd3eea47c390b0cd7a8a098f073f4206991c9e85
1
// { dg-do compile { target c++11 } }
2
3
template<class T>
4
using ref = T&;
5
6
int x;
7
8
template<template<class> class T, T<int>>
9
struct X { };
10
11
struct Y : X<ref, x> { };