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