rust/tests/ui/macros/assert-macro-owned.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
206 B
Rust
Raw Normal View History

2020-04-16 06:50:32 +00:00
//@ run-fail
//@ error-pattern:panicked
//@ error-pattern:test-assert-owned
2020-05-07 15:39:02 +00:00
//@ ignore-emscripten no processes
2021-06-29 18:33:31 +00:00
#![allow(non_fmt_panics)]
2021-02-01 23:40:17 +00:00
fn main() {
assert!(false, "test-assert-owned".to_string());
}