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 c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-57764.C
blob
b26f4b50449bdbaa8d6f8100ebdeb34622d329d0
1
// PR c++/57764
2
// { dg-do compile { target c++11 } }
3
4
constexpr int x = 42;
5
6
struct S
7
{
8
static constexpr int const & y = x;
9
};
10
11
constexpr int const & S::y;