mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-03 16:26:05 +00:00

already been loaded, apply that update record to the Decl immediately, rather than adding it to a pending list and never applying it. llvm-svn: 203534
9 lines
207 B
C++
9 lines
207 B
C++
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules -I %S/Inputs/update-after-load -verify -fmodules-cache-path=%t %s
|
|
|
|
// expected-no-diagnostics
|
|
#include "a.h"
|
|
namespace llvm {}
|
|
#include "b.h"
|
|
void llvm::f() {}
|