repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr42890.C
blob
937367665dce29cb08074b40e8ebf927dd2fe57d
1
// PR tree-optimization/42890
2
// { dg-do compile }
3
4
extern "C" int puts (const char *) throw ();
5
6
struct S
7
{
8
const char *a;
9
const char **b;
10
S (const char *s) { a = s; b = &a; }
11
~S () { puts (a); }
12
};
13
14
void
15
foo (int (*fn) (const char *))
16
{
17
S a ("foo");
18
fn ("bar");
19
}
20
21
int
22
main ()
23
{
24
foo (puts);
25
}