blob: 113ece4fb64b38574c3a10fd75c0ad24b4de300d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// RUN: rm -fR %t
// RUN: split-file %s %t
// RUN: cd %t
// RUN: %clang_cc1 -std=c++20 -emit-header-unit -xc++-user-header h1.h
// RUN: %clang_cc1 -std=c++20 -emit-header-unit -xc++-user-header h2.h -fmodule-file=h1.pcm
// RUN: %clang_cc1 -std=c++20 -fsyntax-only main.cpp -fmodule-file=h1.pcm -fmodule-file=h2.pcm
//--- h1.h
#include <stdarg.h>
// expected-no-diagnostics
//--- h2.h
import "h1.h";
// expected-no-diagnostics
//--- main.cpp
import "h1.h";
import "h2.h";
void foo(int x, ...) {
va_list v;
va_start(v, x);
va_end(v);
}
// expected-no-diagnostics
|