// generated by codegen, do not edit import codeql.rust.elements import TestUtils query predicate instances(MatchExpr x) { toBeTested(x) and not x.isUnknown() } query predicate getAttr(MatchExpr x, int index, Attr getAttr) { toBeTested(x) and not x.isUnknown() and getAttr = x.getAttr(index) } query predicate getScrutinee(MatchExpr x, Expr getScrutinee) { toBeTested(x) and not x.isUnknown() and getScrutinee = x.getScrutinee() } query predicate getMatchArmList(MatchExpr x, MatchArmList getMatchArmList) { toBeTested(x) and not x.isUnknown() and getMatchArmList = x.getMatchArmList() }