1 // RUN: %clang_cc1 -verify %s
3 #define NODEREF __attribute__((noderef))
6 int func(T NODEREF
*a
) { // expected-note 2 {{a declared here}}
7 return *a
+ 1; // expected-warning 2 {{dereferencing a; was declared with a 'noderef' type}}
13 func(f
); // expected-note{{in instantiation of function template specialization 'func<float>' requested here}}
14 func(i
); // expected-note{{in instantiation of function template specialization 'func<int>' requested here}}