brintos

brintos / llvm-project-archived public Read only

0
0
Text · 260 B · 78dc4f0 Raw
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);