brintos

brintos / llvm-project-archived public Read only

0
0
Text · 348 B · 74a74d6 Raw
10 lines · plain
1// RUN: %clang_cc1 -std=c++23 %s -verify -fsyntax-only2export module M;3static int local;4export inline int exposure1() { return local; } // expected-warning {{TU local entity 'local' is exposed}}5 6static int local2 = 43;7export extern "C++" {8inline int exposure2() { return local2; } // expected-warning {{TU local entity 'local2' is exposed}}9}10