Skip to content

Commit

Permalink
Regression test for #58435.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnkfelix committed Mar 4, 2019
1 parent a9da8fc commit b129de4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/test/run-pass/issues/issue-58435-ice-with-assoc-const.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// The const-evaluator was at one point ICE'ing while trying to
// evaluate the body of `fn id` during the `s.id()` call in main.

struct S<T>(T);

impl<T> S<T> {
const ID: fn(&S<T>) -> &S<T> = |s| s;
pub fn id(&self) -> &Self {
Self::ID(self) // This, plus call below ...
}
}

fn main() {
let s = S(10u32);
assert!(S::<u32>::ID(&s).0 == 10); // Works fine
assert!(s.id().0 == 10); // ... causes compiler to panic
}

0 comments on commit b129de4

Please sign in to comment.