Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
fn-template14.C
blob: 96d9267ff169ec14425d91df1df04d86ab96faf0 [
file
] [
log
] [
blame
]
// P0846R0
// { dg-do compile }
// { dg-options "-std=c++2a" }
template
<typename>
struct
B
{
template
<typename>
int
foo
()
{
return
0
;
}
int
i
=
foo
<int>
();
};