Files
rust/tests/ui/macros/assert-macro-owned.rs
T
Christian Poveda 7ae2823bc6 Gate 2018 UI tests
2025-11-27 14:13:58 -05:00

12 lines
215 B
Rust

//@ edition:2015..2021
//@ run-fail
//@ error-pattern:panicked
//@ error-pattern:test-assert-owned
//@ needs-subprocess
#![allow(non_fmt_panics)]
fn main() {
assert!(false, "test-assert-owned".to_string());
}