blob: 95401fe8b562ffd1942d402f02a1abf194a531a4 [file] [log] [blame]
// PR c++/116496
// { dg-additional-options "-fmodules-ts -std=c++20 -Wno-global-module" }
// { dg-module-cmi B }
module;
template <typename T> struct S {};
export module B;
import A;
template <typename T> requires true struct S<T*> {};