inline.c revision 85a5319ea4b5c916d7dd665e84af61e4a8a0b9c2
1// RUN: clang-cc -fsyntax-only -verify %s
2
3// Check that we don't allow illegal uses of inline
4inline int a; // expected-error{{'inline' can only appear on functions}}
5typedef inline int b; // expected-error{{'inline' can only appear on functions}}
6int d(inline int a); // expected-error{{'inline' can only appear on functions}}
7