Skip to content

Commit

Permalink
Added missing constraint.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Nov 5, 2024
1 parent 506c1bd commit f28c9dc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/resolved/datatype/kind/constraint.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
use std::fmt::Display;

#[derive(Clone, Debug, PartialEq)]
pub enum Constraint {
Add,
}

impl Display for Constraint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Add")
}
}

0 comments on commit f28c9dc

Please sign in to comment.