summary refs log tree commit diff
path: root/src/test/run-fail/panic-macro-fmt.rs
blob: 658ae56e7e49fbf63f7764567b3dc214d0f6141a (plain)
1
2
3
4
5
// error-pattern:panicked at 'test-fail-fmt 42 rust'

fn main() {
    panic!("test-fail-fmt {} {}", 42, "rust");
}