aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/p3.cpp
blob: 3b0e345f01724611b427386c80411cf8a1fbe043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang-cc -verify %s
// XFAIL

void f0(void) {
  inline void f1(); // expected-error {{'inline' is not allowed on block scope function declaration}}
}

// FIXME: Add test for "If the inline specifier is used in a friend declaration,
// that declaration shall be a definition or the function shall have previously
// been declared inline.