blob: f3e272009fceb81e6b45e8b01d40fbf43245ffc5 [file] [log] [blame]
Richard Smithbb853c72014-08-13 01:23:33 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t %s -I%S/Inputs/cxx-lookup -verify
Richard Smithbb853c72014-08-13 01:23:33 +00003// expected-no-diagnostics
4namespace llvm {}
5#include "c2.h"
6llvm::GlobalValue *p;
Richard Smithe8292b12015-02-10 03:28:10 +00007
8#include "na.h"
9namespace N { struct foo; }
10#include "nb.h"
11N::foo *use_n_foo;