blob: 417cb6b115cdf667e515aecb0ec84a0035459d95 [file] [log] [blame]
// { dg-module-do run }
// { dg-additional-options "-fmodules-ts" }
export module One;
// { dg-module-cmi "One" }
export struct base
{
int b;
base (int b_)
: b (b_)
{
}
virtual int getter () const;
};