xref: /llvm-project/clang/test/CXX/basic/basic.def/p4.cpp (revision 62f19e700d3126415bb443162501eefe22cf1811)
1*62f19e70SRichard Smith // RUN: %clang_cc1 -std=c++1z -verify %s
2*62f19e70SRichard Smith 
3*62f19e70SRichard Smith inline int f(); // expected-warning {{inline function 'f' is not defined}}
4*62f19e70SRichard Smith extern inline int n; // expected-error {{inline variable 'n' is not defined}}
5*62f19e70SRichard Smith 
6*62f19e70SRichard Smith int use = f() + n; // expected-note 2{{used here}}
7