blob: 64e8d2861bef4ad1b1845658ddc8411a85fb2aae [file] [log] [blame]
// { dg-module-do run }
// { dg-additional-options "-fmodule-header" }
// { dg-module-cmi {} }
struct X
{
int m;
X (int m) :m(m) {}
operator int () const { return m; }
};