mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
30 lines
1.4 KiB
Rust
30 lines
1.4 KiB
Rust
trait Foo {
|
|
type Clone;
|
|
fn foo() -> Clone;
|
|
//~^ WARNING trait objects without an explicit `dyn` are deprecated [bare_trait_objects]
|
|
//~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
//~| HELP if this is an object-safe trait, use `dyn`
|
|
//~| WARNING trait objects without an explicit `dyn` are deprecated [bare_trait_objects]
|
|
//~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
//~| HELP if this is an object-safe trait, use `dyn`
|
|
//~| ERROR the trait `Clone` cannot be made into an object [E0038]
|
|
//~| HELP there is an associated type with the same name
|
|
}
|
|
|
|
trait DbHandle: Sized {}
|
|
|
|
trait DbInterface {
|
|
type DbHandle;
|
|
fn handle() -> DbHandle;
|
|
//~^ WARNING trait objects without an explicit `dyn` are deprecated [bare_trait_objects]
|
|
//~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
//~| HELP if this is an object-safe trait, use `dyn`
|
|
//~| WARNING trait objects without an explicit `dyn` are deprecated [bare_trait_objects]
|
|
//~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
//~| HELP if this is an object-safe trait, use `dyn`
|
|
//~| ERROR the trait `DbHandle` cannot be made into an object [E0038]
|
|
//~| HELP there is an associated type with the same name
|
|
}
|
|
|
|
fn main() {}
|