blob: fea453740e0bee151089a5e46c477cc3e575a55c (
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
|
// PR c++/69005
// { dg-do compile { target c++11 } }
template<typename T> T& declval();
template<typename _Sig> class function;
template<typename _Res, typename _Arg>
struct function<_Res(_Arg)>
{
function() noexcept { }
function(const function&) { }
template<typename _Functor,
typename = decltype(declval<_Functor&>()(declval<_Arg>()))>
function(_Functor) { }
_Res operator()(_Arg) const;
};
struct Foo {
function<void(Foo)> Func;
};
extern Foo exfoo;
Foo f (exfoo);
|