blob: 292fd761fb13088d4b59ae550e42e0e5ed19c02d [file] [log] [blame]
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101672
// { dg-do compile }
module object;
interface I101672
{
static int i101672;
}
class A101672 : I101672 // { dg-error "class object.A101672 missing or corrupt object.d" }
{
static int a101672;
}
class B101672 : A101672
{
static int b101672;
}