mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
260 B
Rust
12 lines
260 B
Rust
// run-pass
|
|
fn main() {
|
|
struct X;
|
|
trait Foo<T> {
|
|
fn foo(&self) where (T, Option<T>): Ord {}
|
|
fn bar(&self, x: &Option<T>) -> bool
|
|
where Option<T>: Ord { *x < *x }
|
|
}
|
|
impl Foo<X> for () {}
|
|
let _ = &() as &dyn Foo<X>;
|
|
}
|