Skip to content

Commit

Permalink
Rollup merge of rust-lang#58911 - pnkfelix:issue-58435-regression-tes…
Browse files Browse the repository at this point in the history
…t, r=alexcrichton

Regression test for rust-lang#58435.

Fix rust-lang#58435
  • Loading branch information
pietroalbini committed Mar 8, 2019
2 parents 4083c69 + b129de4 commit c789291
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 c789291

Please sign in to comment.