| commit | e181de7f4fe9c75327836e5493c2783bcefc9293 | [log] [tgz] |
|---|---|---|
| author | Richard Smith <richard-llvm@metafoo.co.uk> | Mon Apr 22 22:50:11 2019 +0000 |
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | Mon Apr 22 22:50:11 2019 +0000 |
| tree | 014979d3a317a1d57bcb86609e0d1f11c98ebd55 | |
| parent | 68602ab2f3535291753a6149d1f445c5fd416152 [diff] [blame] |
[c++2a] Implement semantic restrictions for 'export' declarations. llvm-svn: 358932
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 0000000..f2e2cbb --- /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;