core: improve error messages

This commit is contained in:
abdul124 2024-08-22 16:44:31 +08:00 committed by sb10q
parent 15e62f467e
commit 5b2b6db7ed
1 changed files with 1 additions and 1 deletions

View File

@ -1748,7 +1748,7 @@ impl<'a> Inferencer<'a> {
Ok(Some(new_func))
}
None => report_error(
format!("Method {class_name}.{method_name} not found in ancestor list").as_str(),
format!("Ancestor method [{class_name}.{method_name}] should be defined with same decorator as its overridden version").as_str(),
*location,
),
}