]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/function/91456.cc
libstdc++: Disable hosted-only tests [PR103626]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / function / 91456.cc
CommitLineData
7adcbafe 1// Copyright (C) 2019-2022 Free Software Foundation, Inc.
d91f618d
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
d91f618d 18// { dg-do compile { target c++17 } }
7cc9022f 19// { dg-require-effective-target hosted }
d91f618d 20
58148166
JW
21// PR 91456
22// std::function and std::is_invocable_r do not understand guaranteed elision
23
d91f618d
JW
24#include <functional>
25
26struct Immovable {
27 Immovable() = default;
28 Immovable(const Immovable&) = delete;
29 Immovable& operator=(const Immovable&) = delete;
30};
31
32Immovable get() { return {}; }
33const Immovable i = get(); // OK
34std::function<const Immovable()> f{&get}; // fails
35const Immovable i2 = f();
36
37const Immovable cget() { return {}; }
38Immovable ci = cget(); // OK
39std::function<Immovable()> cf{&cget}; // fails
40Immovable ci2 = cf();