]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/constexpr-empty13.C
AArch64: Improve costing of ctz
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-empty13.C
1 // { dg-do compile { target c++11 } }
2
3 struct A {
4 struct B { } b;
5 } a;
6 constexpr int f (A a) { return 42; }
7 constexpr int i = f(a);