blob: ad9a2f9e5430dd07cc5c7f020ff42ae8e666f910 [file] [log] [blame]
// { dg-module-do run }
// { dg-additional-options "-fmodule-header" }
// { dg-module-cmi {} }
template<int I> struct Tpl
{
int i;
Tpl () : i (I){}
operator int () const
{
return i;
}
};