diff options
Diffstat (limited to 'tests/ui/panic-runtime/link-to-unwind.rs')
-rw-r--r-- | tests/ui/panic-runtime/link-to-unwind.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/panic-runtime/link-to-unwind.rs b/tests/ui/panic-runtime/link-to-unwind.rs new file mode 100644 index 000000000..59036ca99 --- /dev/null +++ b/tests/ui/panic-runtime/link-to-unwind.rs @@ -0,0 +1,10 @@ +// run-pass + +// no-prefer-dynamic + +#![feature(panic_unwind)] + +extern crate panic_unwind; + +fn main() { +} |