Sign in
gnu
/
gcc
/
19220ca6aa79921cc431e41f25986e16410c7a6a
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg4.C
blob: 293538adbd15b5fe069d9c89f3f3eafb1409ca57 [
file
] [
log
] [
blame
]
// PR c++/14763
struct
A
{
int
get
()
const
{}
static
A
*
foo
();
};
template
<bool>
struct
S
{
S
(
unsigned
int
=
A
::
foo
()->
get
())
;
};
void
foo
()
throw
()
{
S
<false>
f
;
}