blob: fcab6f301e1cf62c7c962d83cd2db94df318e569 [file] [log] [blame]
// PR c++/118049
// { dg-additional-options "-fmodules -Wno-global-module" }
// { dg-module-cmi A }
module;
template <typename T> struct S {
auto foo() {}
};
export module A;
template struct S<char>;