blob: 5c4e7c602b0e0031ff8a7ba10727facbc1221149 [file] [log] [blame]
// PR c++/119551
// { dg-additional-options "-fmodules" }
// { dg-module-cmi M }
// Test that emitting variables referencing TU-local entities
// builds and runs correctly.
export module M;
static int tu_local_var = 5;
static int* tu_local_func() { return &tu_local_var; }
export int* a = &tu_local_var;
export inline int* b = tu_local_func();