aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.def/p4.cpp
blob: c3919156bbbbfd54b93f3910f774d4a86258b024 (plain) (blame)
1
2
3
4
5
6
// RUN: %clang_cc1 -std=c++1z -verify %s

inline int f(); // expected-warning {{inline function 'f' is not defined}}
extern inline int n; // expected-error {{inline variable 'n' is not defined}}

int use = f() + n; // expected-note 2{{used here}}