Skip to content

Commit

Permalink
Fix typecheck call in fuzz_dash_e.cc (sorbet#4958)
Browse files Browse the repository at this point in the history
  • Loading branch information
aprocter-stripe authored Dec 3, 2021
1 parent ba3f461 commit 315163e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fuzz/fuzz_dash_e.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {

indexed = realmain::pipeline::index(gs, inputFiles, *opts, *workers, kvstore);
indexed = move(realmain::pipeline::resolve(gs, move(indexed), *opts, *workers).result());
realmain::pipeline::typecheck(gs, move(indexed), *opts, *workers).result();
realmain::pipeline::typecheck(gs, move(indexed), *opts, *workers);
return 0;
}

0 comments on commit 315163e

Please sign in to comment.