CS144Lab/doctests/parser_dt.cc
2021-09-21 17:11:37 -07:00

16 lines
234 B
C++

#include "parser.hh"
#include <cstdint>
#include <cstdlib>
#include <stdexcept>
#include <vector>
int main() {
try {
#include "parser_example.cc"
} catch (...) {
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}