[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaTemplate / instantiate-function-1.mm
blobc67b5985f63f605aeb0473572557da3d69e16d0c
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // XFAIL: *
4 template<typename T> struct Member0 {
5   void f(T t) {
6     t;
7     t.f;
8     t->f;
9     
10     T* tp;
11     tp.f;
12     tp->f;
14     this->f;
15     this.f; // expected-error{{member reference base type 'struct Member0 *const' is not a structure or union}}
16   }