blob: d76734adeeb520f520817f1efcfd1e3ed758fa36 [file] [log] [blame]
Richard Smith3f57cff2017-03-09 00:58:22 +00001// RUN: rm -rf %t
2// RUN: mkdir %t
3// RUN: echo 'module X { header "x.h" }' > %t/map
4// RUN: echo 'extern int n;' > %t/x.h
5// RUN: cd %t
6// RUN: %clang_cc1 %s -fmodules -fmodule-map-file=map -fmodules-cache-path=. -verify -I.
7// expected-no-diagnostics
8#include "x.h"
9int *m = &n;