diff options
Diffstat (limited to 'tests/ui/unreachable-code-1.rs')
| -rw-r--r-- | tests/ui/unreachable-code-1.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/unreachable-code-1.rs b/tests/ui/unreachable-code-1.rs new file mode 100644 index 00000000000..ee44f399945 --- /dev/null +++ b/tests/ui/unreachable-code-1.rs @@ -0,0 +1,19 @@ +// run-pass + +#![allow(unused_must_use)] +#![allow(unreachable_code)] + +#![allow(unused_variables)] +#![allow(dead_code)] + +fn id(x: bool) -> bool { x } + +fn call_id() { + let c = panic!(); + id(c); +} + +fn call_id_3() { id(return) && id(return); } + +pub fn main() { +} |
