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

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

// { dg-do compile { target c++11 } }

struct empty1 { };
constexpr empty1 foo1() { return {}; }

struct empty2 { };
constexpr empty2 foo2(empty1) { return {}; }

constexpr empty2 a = foo2(foo1());