7 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3// Function annotations.4[[clang::unsafe_buffer_usage]]5void f(int *buf, int size);6void g(int *buffer [[clang::unsafe_buffer_usage("buffer")]], int size); // expected-warning {{'clang::unsafe_buffer_usage' attribute only applies to functions}}7