rust/tests/ui/specialization/issue-39618.rs

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

27 lines
600 B
Rust
Raw Normal View History

2020-02-15 17:53:58 +00:00
// Regression test for #39618, shouldn't crash.
2020-02-15 19:36:44 +00:00
// FIXME(JohnTitor): Centril pointed out this looks suspicions, we should revisit here.
// More context: https://github.com/rust-lang/rust/pull/69192#discussion_r379846796
2020-05-17 08:22:48 +00:00
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
2020-02-15 17:53:58 +00:00
trait Foo {
fn foo(&self);
}
trait Bar {
fn bar(&self);
}
impl<T> Bar for T where T: Foo {
fn bar(&self) {}
}
impl<T> Foo for T where T: Bar {
//~^ ERROR cycle detected when computing whether impls specialize one another
2020-02-15 17:53:58 +00:00
fn foo(&self) {}
}
impl Foo for u64 {}
fn main() {}