blob: b9e6e111ca1db54b38c5a520004da7445dc0ac32 (
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
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// 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
|