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