Skip to content

Commit 79178ce

Browse files
committed
fix: comment in soa_attr test
1 parent 63f2157 commit 79178ce

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Diff for: .vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": false
3+
}

Diff for: expand

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#! /bin/bash
2+
cargo expand --test $1 > tests/$1_expanded.rs

Diff for: tests/soa_attr.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ fn serde_skip_test() -> Result<(), serde_json::Error> {
8787
let _ = ref_mut.meta;
8888

8989
let ptr_mut = ref_mut.as_ptr();
90-
let _ = ptr_mut.x; // Should not have a deprecate warning
91-
let _ = ptr_mut.y; // Should not have a deprecate warning
92-
let _ = ptr_mut.meta; // Should have a deprecate warning
90+
let _ = ptr_mut.x;
91+
let _ = ptr_mut.y; // Should have a deprecate warning
92+
let _ = ptr_mut.meta;
9393
}
9494
Ok(())
9595
}

0 commit comments

Comments
 (0)