// generated by codegen, do not edit import codeql.rust.elements import TestUtils query predicate instances(ConstBlockPat x, string isConst__label, string isConst) { toBeTested(x) and not x.isUnknown() and isConst__label = "isConst:" and if x.isConst() then isConst = "yes" else isConst = "no" } query predicate getBlockExpr(ConstBlockPat x, BlockExpr getBlockExpr) { toBeTested(x) and not x.isUnknown() and getBlockExpr = x.getBlockExpr() }