comparison gcc/testsuite/g++.dg/cpp0x/constexpr-shift2.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
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 }