2024-02-16 20:02:50 +00:00
|
|
|
//@run-rustfix
|
2023-08-14 17:51:19 +08:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
trait Trait {}
|
|
|
|
|
|
|
|
fn assert_send(ptr: *mut dyn Trait) -> *mut (dyn Trait + Send) {
|
|
|
|
//~^ ERROR incorrect parentheses around trait bounds
|
|
|
|
ptr as _
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo2(_: &(dyn Trait + Send)) {}
|
|
|
|
//~^ ERROR incorrect parentheses around trait bounds
|
|
|
|
|
|
|
|
fn foo3(_: &(dyn Trait + Send)) {}
|
|
|
|
//~^ ERROR incorrect parentheses around trait bounds
|
|
|
|
|
|
|
|
fn main() {}
|