Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Modules/cxx-lookup.cpp @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: rm -rf %t |
2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t %s -I%S/Inputs/cxx-lookup -verify | |
3 // expected-no-diagnostics | |
4 namespace llvm {} | |
5 #include "c2.h" | |
6 llvm::GlobalValue *p; | |
7 | |
8 #include "na.h" | |
9 namespace N { struct foo; } | |
10 #include "nb.h" | |
11 N::foo *use_n_foo; |