Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
canon-type-14.C
blob: fa05bdb9a74eda233ce0b436abad3e5b05a3f598 [
file
] [
log
] [
blame
]
// PR c++/94632
// { dg-do compile { target c++11 } }
template
<bool>
struct
b
;
template
<typename>
class
c
{
template
<
typename
f
>
static
void
d
(
f e
,
b
<
decltype
(
e
)::
k
>);
};
template
class
c
<int>
;