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