diff options
Diffstat (limited to 'test/Modules/parse-attributes.modulemap')
-rw-r--r-- | test/Modules/parse-attributes.modulemap | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Modules/parse-attributes.modulemap b/test/Modules/parse-attributes.modulemap new file mode 100644 index 0000000000000..0d18325580a7a --- /dev/null +++ b/test/Modules/parse-attributes.modulemap @@ -0,0 +1,12 @@ +// RUN: rm -rf %t.modules +// RUN: not %clang_cc1 -fmodules -fmodules-cache-path=%t.modules \ +// RUN: -fmodule-map-file=%s -I%S -include "Inputs/empty.h" \ +// RUN: -fsyntax-only -x c++ /dev/null 2>&1 | FileCheck %s + +// CHECK: error: expected ']' to close attribute +// CHECK-NOT: error: expected '{' to start module 'A' + +module A [system { + header "Inputs/empty.h" + private header "Inputs/empty.h" +} |