blob: 10cb05917b9cc747bc95770fe17c495f601f9bb7 [file] [log] [blame]
// { dg-lto-do link }
// { dg-lto-options { { -O3 -g -flto } } }
// { dg-extra-ld-options "-r -nostdlib" }
struct cStdDev
{
long ns;
virtual double mean() const { return ns; }
};
struct cWeightedStdDev : public cStdDev {
virtual int netPack();
};
int cWeightedStdDev::netPack() { return 0; }