repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
inh-ctor37.C
blob
d501c5b97c1b68315ae308c7b539619421625499
1
// { dg-do compile { target c++11 } }
2
// PR 78488, seg fault with inherited ctor
3
4
struct Foo { Foo() {} };
5
6
struct Bar : Foo {
7
using Foo::Foo;
8
Bar(void*);
9
};
10
11
int main() {
12
Bar f;
13
}