view gcc/testsuite/g++.dg/cpp0x/noexcept33.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

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

struct Pepper {};
struct Apple { Apple(int) {} };

struct Combination : Apple, Pepper
{
  Combination(Pepper p, Apple a)
    : Apple(a), Pepper(p)
  {}
};

struct MyCombination
{
  using Spice = Pepper;
  using Fruit = Apple;

  Combination combination;

  template<typename T>
  constexpr MyCombination(T&& t)
  noexcept(noexcept(Combination(Spice(), Fruit(t))))
    : combination(Spice(), Fruit(t))
  {}
};

MyCombination obj(Apple(4));