Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
assert-macro-owned.rs
blob: f9b6f5f5180590306303e7dc94c81fb2adb05930 [
file
] [
log
] [
blame
]
//@ 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
());
}