Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-54.C
blob: faac46782dd037b92e69bcab18341fa7f8f8f86a [
file
] [
log
] [
blame
]
// PR c++/55992
// { dg-do compile { target c++11 } }
template
<int>
struct
A
{
};
template
<
int
I
>
struct
B
{
static
constexpr
int
f
(
int
i
)
{
return
i
;
}
template
<
int
J
>
using
C
=
A
<
f
(
J
)>;
C
<
I
>
c
;
};