Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
non-dependent15.C
blob: 00dfe26d6bacd91462047b5efdb3d945215c3203 [
file
] [
log
] [
blame
]
// PR c++/95468
// { dg-do compile { target c++11 } }
struct
A
{
template
<
int
N
>
static
constexpr
int
condition
()
{
return
N
;
}
};
template
<int>
struct
B
{};
template
<class>
using
T
=
B
<
A
::
condition
<
int
(
1
)>()>;