2024-01-23 12:24:40 -06:00
|
|
|
//@ revisions: old new
|
|
|
|
//@[old] edition:2015
|
|
|
|
//@[new] edition:2021
|
|
|
|
//@[new] run-rustfix
|
2024-01-03 15:00:04 -06:00
|
|
|
#![deny(bare_trait_objects)]
|
|
|
|
fn ord_prefer_dot(s: String) -> Ord {
|
2024-10-04 09:10:28 -05:00
|
|
|
//[new]~^ ERROR expected a type, found a trait
|
|
|
|
//[old]~^^ ERROR the trait `Ord` cannot be made into an object
|
2024-01-23 12:24:40 -06:00
|
|
|
//[old]~| ERROR trait objects without an explicit `dyn` are deprecated
|
|
|
|
//[old]~| WARNING this is accepted in the current edition (Rust 2015)
|
2024-01-03 15:00:04 -06:00
|
|
|
(s.starts_with("."), s)
|
|
|
|
}
|
|
|
|
fn main() {
|
|
|
|
let _ = ord_prefer_dot(String::new());
|
|
|
|
}
|