brintos

brintos / llvm-project-archived public Read only

0
0
Text · 247 B · c391915 Raw
7 lines · cpp
1// RUN: %clang_cc1 -std=c++1z -verify %s2 3inline int f(); // expected-warning {{inline function 'f' is not defined}}4extern inline int n; // expected-error {{inline variable 'n' is not defined}}5 6int use = f() + n; // expected-note 2{{used here}}7