mirror of https://gitlab.com/cppit/libclangmm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
458 B
20 lines
458 B
#include "clangmm.h" |
|
#include <iostream> |
|
#include <fstream> |
|
#include <cassert> |
|
|
|
using namespace std; |
|
|
|
int main() { |
|
std::string tests_path=LIBCLANGMM_TESTS_PATH; |
|
std::string path(tests_path+"/case/main_error.cpp"); |
|
|
|
clangmm::Index index(0, 0); |
|
|
|
clangmm::TranslationUnit tu(index, path, {}); |
|
|
|
auto diagnostics=tu.get_diagnostics(); |
|
assert(diagnostics.size()>0); |
|
assert(!diagnostics[0].spelling.empty()); |
|
assert(diagnostics[0].severity==3); |
|
}
|
|
|