rust/src/test/ui/panics/panic-macro-owned.rs

7 lines
105 B
Rust
Raw Normal View History

2020-04-16 06:50:32 +00:00
// run-fail
// error-pattern:panicked at 'test-fail-owned'
fn main() {
panic!("test-fail-owned");
}