Skip to content

Commit

Permalink
[cherry-pick][adapter] Fix overlapping match in old execution version (
Browse files Browse the repository at this point in the history
…#18415) (#18419)

## Description 

Fix a typo issue in an old execution version 

## Test plan 

Historical replays
  • Loading branch information
tzakian authored Jun 26, 2024
1 parent 6a179c5 commit 590b870
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ mod checked {
Type::TyParam(_) => {
invariant_violation!("TyParam should have been substituted")
}
Type::Datatype(_) | Type::Datatype(_) if abilities.has_key() => {
Type::Datatype(_) | Type::DatatypeInstantiation(_) if abilities.has_key() => {
let type_tag = context
.vm
.get_runtime()
Expand Down

0 comments on commit 590b870

Please sign in to comment.