[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaTemplate / instantiate-call.cpp
blobda1eb49eb89e947e4be3815bfb5dd282b8d19126
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 namespace N1 {
4 struct X0 { };
6 int& f0(X0);
9 namespace N2 {
10 char& f0(char);
12 template<typename T, typename Result>
13 struct call_f0 {
14 void test_f0(T t) {
15 Result result = f0(t);
20 template struct N2::call_f0<int, char&>;
21 template struct N2::call_f0<N1::X0, int&>;
23 namespace N3 {
24 template<typename T, typename Result>
25 struct call_f0 {
26 void test_f0(T t) {
27 Result &result = f0(t); // expected-error {{undeclared identifier}} \
28 expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
33 template struct N3::call_f0<int, char&>; // expected-note{{instantiation}}
34 template struct N3::call_f0<N1::X0, int&>;
36 short& f0(char); // expected-note {{should be declared prior to the call site}}
37 namespace N4 {
38 template<typename T, typename Result>
39 struct call_f0 {
40 void test_f0(T t) {
41 Result &result = f0(t);
46 template struct N4::call_f0<int, short&>;
47 template struct N4::call_f0<N1::X0, int&>;
48 template struct N3::call_f0<int, short&>; // expected-note{{instantiation}}
50 // FIXME: test overloaded function call operators, calls to member
51 // functions, etc.