mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
25 lines
478 B
Rust
25 lines
478 B
Rust
//@ revisions: current next
|
|
//@[next] compile-flags: -Znext-solver
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
|
|
// Check that we test WF conditions for fn where clauses in a trait definition.
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
|
|
struct Bar<T: Eq + ?Sized> {
|
|
value: Box<T>,
|
|
}
|
|
|
|
trait Foo {
|
|
fn bar(&self)
|
|
where
|
|
Self: Sized,
|
|
Bar<Self>: Copy;
|
|
//~^ ERROR E0277
|
|
//
|
|
// Here, Eq ought to be implemented.
|
|
}
|
|
|
|
fn main() {}
|