rust/tests/ui/lint/decorate-ice/decorate-can-emit-warnings.rs
2024-03-17 14:41:37 +00:00

12 lines
234 B
Rust

// Checks that the following does not ICE because `decorate` is incorrectly skipped.
//@ compile-flags: -Dunused_must_use -Awarnings --crate-type=lib
#[must_use]
fn f() {}
pub fn g() {
f();
//~^ ERROR unused return value
}