]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p3.cpp
Update clang to r86025.
[FreeBSD/FreeBSD.git] / test / CXX / dcl.dcl / dcl.spec / dcl.fct.spec / p3.cpp
1 // RUN: clang-cc -verify %s
2 // XFAIL: *
3
4 void f0(void) {
5   inline void f1(); // expected-error {{'inline' is not allowed on block scope function declaration}}
6 }
7
8 // FIXME: Add test for "If the inline specifier is used in a friend declaration,
9 // that declaration shall be a definition or the function shall have previously
10 // been declared inline.
11