blob: 5a9da44cdd623856f4d585b231db6373de6e0758 [file] [log] [blame]
// PR c++/116403
// { dg-additional-options "-fmodules-ts -Wno-global-module" }
// { dg-module-cmi A }
module;
template <typename T> struct GMF {
GMF(int);
};
GMF(int) -> GMF<int>;
export module A;
export using ::GMF;
export template <typename T> struct Attached {
Attached(int);
};
Attached(int) -> Attached<int>;