diff --git a/nac3core/src/toplevel/composer.rs b/nac3core/src/toplevel/composer.rs index aa16e1f..0064a6b 100644 --- a/nac3core/src/toplevel/composer.rs +++ b/nac3core/src/toplevel/composer.rs @@ -105,7 +105,7 @@ impl TopLevelComposer { builtin_id.insert(name, DefinitionId(id)); } else if let TopLevelDef::Class { name, constructor, object_id, .. } = &*def { - assert_eq!(id, object_id.0); + assert_eq!(id, object_id.0, "Object id of class '{}' should match its index in builtin name list", name); if let Some(constructor) = constructor { builtin_ty.insert(*name, *constructor); }