1
Fork 0

Add additional regression test

This commit is contained in:
Aaron Hill 2020-01-07 10:01:52 -05:00
parent 5896998e76
commit e1fc22c4eb
No known key found for this signature in database
GPG key ID: B4087E510E98B164

View file

@ -0,0 +1,20 @@
// check-pass
// compile-flags: --emit=mir,link
// 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() {}