repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
cxx20-module-nested-2.cppm
blob
47ba10f0b652e006fdd569ac1e67e7e064303fdc
1
// RUN: %clang_cc1 -fmodules-ts %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
2
export module FOO;
3
namespace Outer {
4
class Y;
5
class Inner {
6
class X;
7
void Fn (X &, Y &); // #2
8
};
9
// CHECK-DAG: void @_ZN5OuterW3FOO5Inner2FnERNS1_1XERNS_S0_1YE(
10
void Inner::Fn (X &, Y &) {}
11
}
12