We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b72715 commit 6143492Copy full SHA for 6143492
src/concurrent_pinned_vec/tests/iter_ptr.rs
@@ -0,0 +1,17 @@
1
+use crate::GrowthWithConstantTimeAccess;
2
+use crate::concurrent_pinned_vec::iter_ptr::IterPtrOfCon;
3
+use crate::{Doubling, Linear};
4
+use std::string::String;
5
+use test_case::test_matrix;
6
+
7
+#[test_matrix([
8
+ Doubling,
9
+ Linear::new(4),
10
+])]
11
+fn iter_ptr_default<G>(_: G)
12
+where
13
+ G: GrowthWithConstantTimeAccess,
14
+{
15
+ let iter = IterPtrOfCon::<String, G>::default();
16
+ for _ in iter {}
17
+}
src/concurrent_pinned_vec/tests/mod.rs
@@ -1 +1,2 @@
mod into_iter;
+mod iter_ptr;
0 commit comments