mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
INT NEQ for i1 and i8 integer types
This commit is contained in:
parent
4b5f7bfded
commit
d1b00633be
3 changed files with 28 additions and 0 deletions
|
@ -552,6 +552,8 @@ fn from_can<'a>(
|
|||
) {
|
||||
Ok(Layout::Builtin(builtin)) => match builtin {
|
||||
Builtin::Int64 => Symbol::INT_NEQ_I64,
|
||||
Builtin::Bool => Symbol::INT_NEQ_I1,
|
||||
Builtin::Byte => Symbol::INT_NEQ_I8,
|
||||
_ => {
|
||||
panic!("Not-Equality not implemented for {:?}", builtin)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue