Consider lifetime GATs object unsafe

This commit is contained in:
Chayim Refael Friedman 2024-09-22 06:17:33 +03:00
parent 814da15d8b
commit 393f9cc0ba
2 changed files with 14 additions and 1 deletions

View File

@ -349,7 +349,7 @@ fn object_safety_violation_for_assoc_item<F>(
ControlFlow::Continue(())
} else {
let generic_params = db.generic_params(item.into());
if generic_params.len_type_or_consts() > 0 {
if !generic_params.is_empty() {
cb(ObjectSafetyViolation::GAT(it))
} else {
ControlFlow::Continue(())

View File

@ -378,3 +378,16 @@ pub trait Error: core::fmt::Debug + core::fmt::Display {
[("Error", vec![])],
);
}
#[test]
fn lifetime_gat_is_object_unsafe() {
check_object_safety(
r#"
//- minicore: dispatch_from_dyn
trait Foo {
type Bar<'a>;
}
"#,
[("Foo", vec![ObjectSafetyViolationKind::GAT])],
);
}