aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-empty3.C
blob: a9cd98fa4e5e6cee057eba73f2ed5ba091794b8e (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }

struct IsLiteral {};

constexpr auto ab = IsLiteral();

constexpr IsLiteral bar(IsLiteral x) { return x; }

constexpr auto xy = bar(ab);