rust/src/test/run-fail/assert-macro-owned.rs
2018-12-25 21:08:33 -07:00

5 lines
117 B
Rust

// error-pattern:panicked at 'test-assert-owned'
fn main() {
assert!(false, "test-assert-owned".to_string());
}