Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikbhargavan committed Feb 3, 2025
1 parent 16a4bd2 commit 1acd747
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions hax-lib/src/dummy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,34 +73,34 @@ pub mod int {
}

impl Add for Int {
type Output = Self;
type Output = Self;

fn add(self, other: Self) -> Self::Output {
Int(0)
fn add(self, other: Self) -> Self::Output {
Int(0)
}
}

impl Sub for Int {
type Output = Self;
type Output = Self;

fn sub(self, other: Self) -> Self::Output {
Int(0)
fn sub(self, other: Self) -> Self::Output {
Int(0)
}
}

impl Mul for Int {
type Output = Self;
type Output = Self;

fn mul(self, other: Self) -> Self::Output {
Int(0)
fn mul(self, other: Self) -> Self::Output {
Int(0)
}
}

impl Div for Int {
type Output = Self;
type Output = Self;

fn div(self, other: Self) -> Self::Output {
Int(0)
fn div(self, other: Self) -> Self::Output {
Int(0)
}
}

Expand Down

0 comments on commit 1acd747

Please sign in to comment.