Merge pull request #5469 from roc-lang/fix-main

fix main by adding missing match branches
This commit is contained in:
Richard Feldman 2023-05-28 23:31:37 -04:00 committed by GitHub
commit ebd5cbb00d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1468,6 +1468,8 @@ fn low_level_no_rc(lowlevel: &LowLevel) -> RC {
NumBytesToU32 => RC::NoRc,
NumBytesToU64 => RC::NoRc,
NumBytesToU128 => RC::NoRc,
I128OfDec => RC::NoRc,
DictPseudoSeed => RC::NoRc,
StrStartsWith | StrEndsWith => RC::NoRc,
StrStartsWithScalar => RC::NoRc,
StrFromUtf8Range => RC::Rc,