summaryrefslogtreecommitdiff
path: root/tests/src/nested_borrows.rs
diff options
context:
space:
mode:
authorGuillaume Boisseau2024-05-24 16:14:25 +0200
committerGitHub2024-05-24 16:14:25 +0200
commit0baa0519cf477fe1fa447417585960fc811bcae9 (patch)
tree1a45ea3fdd5f462cf57c5dcc07b988c62749c7cd /tests/src/nested_borrows.rs
parent24fc188af7032b8119cb7504965b82216e2bbf6b (diff)
parent37e8a0f5ff7d964eb9525fef765b38e44f79302b (diff)
Merge pull request #204 from AeneasVerif/test-harness4
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 {