blob: a7eae7f9d35689e15fe63eaffbc0ff41005dff59 [file] [log] [blame]
// PR c++/114229
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
// { dg-module-cmi modA }
module;
template<class> struct basic_streambuf { virtual void overflow() { } };
extern template struct basic_streambuf<long>;
export module modA;
export basic_streambuf<long> *p;