Skip to content

Commit d7a18f8

Browse files
Add a test for iter::empty::<*mut i32> being Sync and Send
1 parent a70b240 commit d7a18f8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/ui/threads-sendsync/sync-send-iterators-in-libcore.rs

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ fn main() {
8888
is_sync_send!((1..));
8989
is_sync_send!(repeat(1));
9090
is_sync_send!(empty::<usize>());
91+
is_sync_send!(empty::<*mut i32>());
9192
is_sync_send!(once(1));
9293

9394
// for option.rs

0 commit comments

Comments
 (0)