Clang Project

clang_source_code/test/Modules/update-exception-spec.cpp
1// RUN: rm -rf %t
2// RUN: %clang_cc1 -fexceptions -fcxx-exceptions -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I%S/Inputs/update-exception-spec -emit-llvm-only %s
3#include "a.h"
4void use(B *p);
5#include "c.h"
6void use(B *p) { g(p); }
7