mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 18:42:27 +00:00
20 lines
299 B
Rust
20 lines
299 B
Rust
// Tests for "default" bounds inferred for traits with no bounds list.
|
|
|
|
trait Foo {}
|
|
|
|
fn a(_x: Box<dyn Foo + Send>) {
|
|
}
|
|
|
|
fn b(_x: &'static (dyn Foo + 'static)) {
|
|
}
|
|
|
|
fn c(x: Box<dyn Foo + Sync>) {
|
|
a(x); //~ ERROR mismatched types
|
|
}
|
|
|
|
fn d(x: &'static (dyn Foo + Sync)) {
|
|
b(x);
|
|
}
|
|
|
|
fn main() {}
|