blob: 66d12017a7c6957d311b3b12c046ba1027c5e411 [file] [log] [blame]
// { dg-additional-options "-std=c++2a -fmodule-header" }
// { dg-module-cmi {} }
template<typename T>
inline constexpr bool disable = false;
template<typename U>
concept sized = true;
template<typename V>
class TPL
{
};
template<typename W>
requires (!sized<W>)
inline constexpr bool disable<TPL<W>>
= true;