blob: 8adc7e857699b283685f8d845fa6b7d61dccd22b [file] [log] [blame]
Douglas Gregor963c5532013-06-21 16:28:10 +00001// Test that system-headerness works for building modules.
2
3// RUN: rm -rf %t
Richard Smithef99e4d2014-10-03 00:31:35 +00004// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/cache -isystem %S/Inputs -pedantic -Werror %s -verify -std=c11
Douglas Gregor963c5532013-06-21 16:28:10 +00005// expected-no-diagnostics
6
7@import warning;
8int i = bigger_than_int;
Richard Smithef99e4d2014-10-03 00:31:35 +00009
10#include <stddef.h>
11
12#define __need_size_t
13#include <stddef.h>