blob: bec2e29585d946b54dc2adc075494825e31a2165 [file] [log] [blame]
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wunknown-attributes %s
2
3int x __attribute__((foobar)); // expected-warning {{unknown attribute 'foobar' ignored}}
4void z() __attribute__((bogusattr)); // expected-warning {{unknown attribute 'bogusattr' ignored}}