We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f48cd7d commit 9a90c0eCopy full SHA for 9a90c0e
tests/simple.rs
@@ -13,6 +13,7 @@ fn recurse(n: usize) {
13
if n != 0 {
14
ensure_sufficient_stack(|| recurse(n - 1));
15
}
16
+ #[allow(dropping_copy_types)]
17
drop(x);
18
19
0 commit comments