Clang Project

clang_source_code/test/Sema/artificial.c
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3inline void __attribute__((artificial)) foo() {}
4void __attribute__((artificial)) bar() {} // expected-warning {{'artificial' attribute only applies to inline functions}}
5