rust/tests/ui/associated-types/associated-types-ICE-when-projecting-out-of-err.rs

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

26 lines
451 B
Rust
Raw Normal View History

// Test that we do not ICE when the self type is `ty::err`, but rather
// just propagate the error.
#![crate_type = "lib"]
#![feature(lang_items)]
#![feature(no_core)]
#![no_core]
#[lang="sized"]
2015-03-31 23:58:01 +00:00
pub trait Sized {
// Empty.
}
#[lang = "add"]
trait Add<RHS=Self> {
type Output;
fn add(self, _: RHS) -> Self::Output;
}
fn ice<A>(a: A) {
let r = loop {};
2015-01-31 18:57:26 +00:00
r = r + a;
//~^ ERROR the trait bound `(): Add<A>` is not satisfied
}