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
/
cpp0x
/
constexpr-empty3.C
blob
a9cd98fa4e5e6cee057eba73f2ed5ba091794b8e
1
// { dg-do compile { target c++11 } }
2
3
struct IsLiteral {};
4
5
constexpr auto ab = IsLiteral();
6
7
constexpr IsLiteral bar(IsLiteral x) { return x; }
8
9
constexpr auto xy = bar(ab);