ec25d6db53
This gives one extra error message on two tests, but is necessary to fix bigger problems caused by the cancellation of stashed errors. (Note: why not just avoid stashing altogether? Because that resulted in additional output changes.)
8 lines
205 B
Rust
8 lines
205 B
Rust
//@ edition: 2021
|
|
|
|
fn main() {
|
|
std::any::Any::create();
|
|
//~^ ERROR trait objects must include the `dyn` keyword
|
|
//~| ERROR no function or associated item named `create` found for trait `Any`
|
|
}
|