mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 12:26:07 +00:00

Previously, this would fail if the builtin headers had been "claimed" by a different module that wraps these builtin headers. libc++ does this, for example. This change adds a test demonstrating this situation; the test fails without the fix.
6 lines
77 B
Plaintext
6 lines
77 B
Plaintext
module libcxx [system] {
|
|
header "stddef.h"
|
|
header "stdio.h"
|
|
export *
|
|
}
|