Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
ctor10.C
blob: 99d3ca8c18d782277af704444161acfec6ef56b8 [
file
] [
log
] [
blame
]
// PR c++/85262
// { dg-options -fpermissive }
struct
A
{};
template
<int>
struct
B
:
A
{
B
()
{
A
::
A
(
A
());
// { dg-warning "constructor" }
}
};
B
<
0
>
b
;