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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-cache1.C
blob
8038b88140d99740cae3b36908398888e9b1a915
1
// PR c++/51433
2
// { dg-do compile { target c++11 } }
3
4
constexpr int f();
5
constexpr int g() { return f(); }
6
extern const int n = g(); // dynamic initialization
7
constexpr int f() { return 42; }
8
extern const int m = g();
9
static_assert(m == 42, "m == 42");