7 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3template<typename T>4void test1(T __attribute__((noescape)) arr, int size);5 6// expected-warning@+1 {{'noescape' attribute only applies to pointer arguments}}7void test2(int __attribute__((noescape)) arr, int size);