mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
23 lines
699 B
Rust
23 lines
699 B
Rust
//@ edition:2021
|
|
#![allow(bare_trait_objects)]
|
|
trait A: Sized {
|
|
fn f(a: A) -> A;
|
|
//~^ ERROR expected a type, found a trait
|
|
//~| ERROR expected a type, found a trait
|
|
//~| ERROR associated item referring to unboxed trait object for its own trait
|
|
}
|
|
trait B {
|
|
fn f(b: B) -> B;
|
|
//~^ ERROR expected a type, found a trait
|
|
//~| ERROR expected a type, found a trait
|
|
//~| ERROR associated item referring to unboxed trait object for its own trait
|
|
}
|
|
trait C {
|
|
fn f(&self, c: C) -> C;
|
|
//~^ ERROR expected a type, found a trait
|
|
//~| ERROR expected a type, found a trait
|
|
//~| ERROR associated item referring to unboxed trait object for its own trait
|
|
}
|
|
|
|
fn main() {}
|