Skip to content

Commit

Permalink
Format on test
Browse files Browse the repository at this point in the history
  • Loading branch information
adpaco-aws committed Sep 28, 2023
1 parent de340f2 commit 1cdb54a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/cargo-kani/phantom-data/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ pub struct Foo<R> {

#[kani::proof]
fn main() {
const C: Foo<usize> = Foo {
x: 0,
_t: PhantomData,
};
const C: Foo<usize> = Foo { x: 0, _t: PhantomData };
assert_eq!(C.x, 0);
}

0 comments on commit 1cdb54a

Please sign in to comment.