diff options
Diffstat (limited to 'tests/ui/macros/unreachable-macro-panic.rs')
-rw-r--r-- | tests/ui/macros/unreachable-macro-panic.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/macros/unreachable-macro-panic.rs b/tests/ui/macros/unreachable-macro-panic.rs new file mode 100644 index 000000000..55e2102e2 --- /dev/null +++ b/tests/ui/macros/unreachable-macro-panic.rs @@ -0,0 +1,7 @@ +// run-fail +// error-pattern:internal error: entered unreachable code +// ignore-emscripten no processes + +fn main() { + unreachable!() +} |