Skip to content

Commit

Permalink
gccrs: Remove bad assertion in name resolution
Browse files Browse the repository at this point in the history
This was a handy debug assertion but only works for valid rust code. This
needs to handle the case where the type is not resolved which is a valid
case.

Fixes #2423

gcc/rust/ChangeLog:

	* resolve/rust-ast-resolve-item.cc (ResolveItem::visit): remove assertions

gcc/testsuite/ChangeLog:

	* rust/compile/nr2/exclude: nr2 can't handle this
	* rust/compile/issue-2423.rs: New test.

Signed-off-by: Philip Herron <herron.philip@googlemail.com>
  • Loading branch information
philberty committed Dec 2, 2024
1 parent 5434de6 commit fa93e28
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 6 deletions.
30 changes: 24 additions & 6 deletions gcc/rust/resolve/rust-ast-resolve-item.cc
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,14 @@ ResolveItem::visit (AST::InherentImpl &impl_block)
// Setup paths
CanonicalPath self_cpath = CanonicalPath::create_empty ();
bool ok = ResolveTypeToCanonicalPath::go (impl_block.get_type (), self_cpath);
rust_assert (ok);
if (!ok)
{
resolver->get_name_scope ().pop ();
resolver->get_type_scope ().pop ();
resolver->get_label_scope ().pop ();
return;
}

rust_debug ("AST::InherentImpl resolve Self: {%s}",
self_cpath.get ().c_str ());

Expand Down Expand Up @@ -671,20 +678,31 @@ ResolveItem::visit (AST::TraitImpl &impl_block)
return;
}

bool ok;
// setup paths
CanonicalPath canonical_trait_type = CanonicalPath::create_empty ();
ok = ResolveTypeToCanonicalPath::go (impl_block.get_trait_path (),
canonical_trait_type);
rust_assert (ok);
bool ok = ResolveTypeToCanonicalPath::go (impl_block.get_trait_path (),
canonical_trait_type);
if (!ok)
{
resolver->get_name_scope ().pop ();
resolver->get_type_scope ().pop ();
resolver->get_label_scope ().pop ();
return;
}

rust_debug ("AST::TraitImpl resolve trait type: {%s}",
canonical_trait_type.get ().c_str ());

CanonicalPath canonical_impl_type = CanonicalPath::create_empty ();
ok = ResolveTypeToCanonicalPath::go (impl_block.get_type (),
canonical_impl_type);
rust_assert (ok);
if (!ok)
{
resolver->get_name_scope ().pop ();
resolver->get_type_scope ().pop ();
resolver->get_label_scope ().pop ();
return;
}

rust_debug ("AST::TraitImpl resolve self: {%s}",
canonical_impl_type.get ().c_str ());
Expand Down
14 changes: 14 additions & 0 deletions gcc/testsuite/rust/compile/issue-2423.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
impl NonExistant {
// { dg-error "failed to resolve" "" { target *-*-* } .-1 }
fn test() {}
}

impl NotFound for NonExistant {
// { dg-error "failed to resolve" "" { target *-*-* } .-1 }
fn test() {}
}

trait A {}

impl A for NotFound {}
// { dg-error "failed to resolve" "" { target *-*-* } .-1 }
1 change: 1 addition & 0 deletions gcc/testsuite/rust/compile/nr2/exclude
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,5 @@ issue-1773.rs
issue-2905-1.rs
issue-2905-2.rs
issue-2907.rs
issue-2423.rs
# please don't delete the trailing newline

0 comments on commit fa93e28

Please sign in to comment.