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
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr45660.C
blob
4f03fd5e7e3197c5a7b2d5047992c817186c7c57
1
// PR debug/45660
2
// { dg-do compile }
3
// { dg-options "-g -fno-inline" }
4
5
void
6
test ()
7
{
8
struct S
9
{
10
typedef void (**T) (void);
11
static T i (void) { return 0; }
12
};
13
S s;
14
if (s.i ())
15
*s.i () = 0;
16
}