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