Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panics
/
panic-macro-fmt.rs
blob: 1a63a06c75ad39dcc82f038c603389b6205292e0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ error-pattern:panicked
//@ error-pattern:test-fail-fmt 42 rust
//@ ignore-emscripten no processes
fn
main
()
{
panic
!(
"test-fail-fmt {} {}"
,
42
,
"rust"
);
}