Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr70528.C
blob: af1c84e1e94468289ae420ab9f5a48907401c177 [
file
] [
log
] [
blame
]
// PR c++/70258
// { dg-do compile { target c++11 } }
template
<
class
T
>
struct
H
{
template
<
typename
A
=
T
,
typename
=
decltype
(
A
())>
H
();
};
struct
J
{
struct
K
{
int
First
=
0
;
};
H
<
K
>
FunctionMDInfo
;
};