1*67e74705SXin Li // RUN: rm -rf %t 2*67e74705SXin Li // 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*67e74705SXin Li #include "a.h" 4*67e74705SXin Li void use(B *p); 5*67e74705SXin Li #include "c.h" use(B * p)6*67e74705SXin Livoid use(B *p) { g(p); } 7