// PR c++/116403 // { dg-additional-options "-fmodules-ts -Wno-global-module" } // { dg-module-cmi A } module; template struct GMF { GMF(int); }; GMF(int) -> GMF; export module A; export using ::GMF; export template struct Attached { Attached(int); }; Attached(int) -> Attached;