summaryrefslogtreecommitdiff
path: root/tests/src/nested_borrows.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/nested_borrows.rs')
-rw-r--r--tests/src/nested_borrows.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/nested_borrows.rs b/tests/src/nested_borrows.rs
index 94db0cec..d4d8cf73 100644
--- a/tests/src/nested_borrows.rs
+++ b/tests/src/nested_borrows.rs
@@ -1,3 +1,5 @@
+//@ skip
+//@ charon-args=--no-code-duplication
//! This module contains functions with nested borrows in their signatures.
pub fn id_mut_mut<'a, 'b, T>(x: &'a mut &'b mut T) -> &'a mut &'b mut T {