blob: 96880b469cdce27512c93ea7b95ac7e8772ca37a [file] [log] [blame]
// { dg-additional-options -fmodules-ts }
export module bob;
// { dg-module-cmi bob }
export template <typename T, typename U>
struct same
{
enum { value = 0 };
};
template<typename T>
struct same <T, T>
{
enum { value = 1 };
};