diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-22 22:50:11 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-22 22:50:11 +0000 |
commit | e181de7f4fe9c75327836e5493c2783bcefc9293 (patch) | |
tree | 014979d3a317a1d57bcb86609e0d1f11c98ebd55 /clang/test/CXX/module/module.interface/Inputs/header.h | |
parent | 68602ab2f3535291753a6149d1f445c5fd416152 (diff) | |
download | bcm5719-llvm-e181de7f4fe9c75327836e5493c2783bcefc9293.tar.gz bcm5719-llvm-e181de7f4fe9c75327836e5493c2783bcefc9293.zip |
[c++2a] Implement semantic restrictions for 'export' declarations.
llvm-svn: 358932
Diffstat (limited to 'clang/test/CXX/module/module.interface/Inputs/header.h')
-rw-r--r-- | clang/test/CXX/module/module.interface/Inputs/header.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/CXX/module/module.interface/Inputs/header.h b/clang/test/CXX/module/module.interface/Inputs/header.h new file mode 100644 index 00000000000..f2e2cbb53c1 --- /dev/null +++ b/clang/test/CXX/module/module.interface/Inputs/header.h @@ -0,0 +1,3 @@ +extern int foo; +namespace bar { extern int baz(); } +static int baz; |