aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/unresolved-construct.cpp
blob: bb9ed8e4e0812ccb78f1d67a113fafdf6ce49929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
class A
{
public:
    A() {}

    template <class _F>
        explicit A(_F&& __f);

    A(A&&) {}
    A& operator=(A&&) {return *this;}
};

template <class T>
void f(T t)
{
  A a;
  a = f(t);
}