blob: 33350ce9804d284c848d29729d34eca4042921f0 [file] [log] [blame]
// { dg-additional-options "-fmodules-ts" }
// { dg-module-cmi A }
export module A;
extern "C++" {
template <typename T> struct S;
S(int) -> S<int>;
S(double) -> S<double>;
}