Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-73.C
blob: aae778646dccba8235ae23c4b35b5c39ee7b7528 [
file
] [
log
] [
blame
]
// PR c++/100102
// { dg-do compile { target c++11 } }
template
<
bool
B1
>
using
a
=
int
;
template
<
class
T3
,
class
T4
>
struct
k
{
static
long
o
();
template
<
class
T5
>
using
n
=
a
<
bool
(
k
::
o
)>;
n
<int>
q
;
};