10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3extern inline4__attribute__((__gnu_inline__))5void gnu_inline1() {}6 7inline8__attribute__((__gnu_inline__)) // expected-warning {{'gnu_inline' attribute without 'extern' in C++ treated as externally available, this changed in Clang 10}}9void gnu_inline2() {}10