summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/utilities/tuple/tuple.tuple/TupleFunction.pass.cpp
blob: 977d2b6da54b9ef3b3955dd9fa5aa09a491c83e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// This is for bugs 18853 and 19118

#include "test_macros.h"

#if TEST_STD_VER >= 11

#include <tuple>
#include <functional>

struct X
{
    X() {}

    template <class T>
    X(T);

    void operator()() {}
};

int main()
{
    X x;
    std::function<void()> f(x);
}
#else
int main () {}
#endif
OpenPOWER on IntegriCloud