repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic128.C
blob
8c2d3b233592e9fbc1733ef8fd547042a64fbc91
1
// PR c++/50303
2
// { dg-do compile { target c++11 } }
3
4
template<typename Interface>
5
struct A1 {
6
};
7
8
template<template<class I> class... Actions>
9
void g2() {
10
g2<Actions...>();
11
}
12
13
int main()
14
{
15
g2<A1>();
16
}