blob: d7a7176eb99e7042132d28753c6919dd415d28c1 [file] [log] [blame]
// { dg-additional-options {-fmodules-ts -Wno-pedantic} }
module;
# 5 __FILE__ 1
struct Type {};
bool operator==(Type const &, Type const &);
# 10 "" 2
export module Foo;
// { dg-module-cmi Foo }
export template<typename T>
bool equal (T const &x, T const &y)
{
return x == y;
}