2024-02-16 14:02:50 -06:00
|
|
|
//@ edition: 2021
|
2023-05-19 09:11:54 -05:00
|
|
|
|
|
|
|
fn main() {
|
2024-02-26 00:22:24 -06:00
|
|
|
std::any::Any::create();
|
|
|
|
//~^ ERROR trait objects must include the `dyn` keyword
|
|
|
|
//~| ERROR no function or associated item named `create` found for trait `Any`
|
2023-05-19 09:11:54 -05:00
|
|
|
}
|