rust/tests/ui/consts/issue-67696-const-prop-ice.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
412 B
Rust
Raw Normal View History

2020-01-07 15:01:52 +00:00
// check-pass
// compile-flags: --emit=mir,link -Zmir-opt-level=4
2020-01-07 15:01:52 +00:00
// Checks that we don't ICE due to attempting to run const prop
// on a function with unsatisifable 'where' clauses
#![allow(unused)]
trait A {
fn foo(&self) -> Self where Self: Copy;
}
impl A for [fn(&())] {
fn foo(&self) -> Self where Self: Copy { *(&[] as &[_]) }
}
impl A for i32 {
fn foo(&self) -> Self { 3 }
}
fn main() {}