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-shift2.C
blob
9b3490a66a712fb0cfa476b9262ce61ebec53d7c
1
// PR c++/94955
2
// { dg-do compile { target c++11 } }
3
4
struct S {
5
static constexpr char foo() { return 10; }
6
};
7
8
short int
9
fn (short int e)
10
{
11
return e >> S::foo();
12
}