summaryrefslogtreecommitdiff
path: root/clang/test/Parser/access-spec-attrs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/access-spec-attrs.cpp')
-rw-r--r--clang/test/Parser/access-spec-attrs.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/Parser/access-spec-attrs.cpp b/clang/test/Parser/access-spec-attrs.cpp
new file mode 100644
index 0000000..4fa5975
--- /dev/null
+++ b/clang/test/Parser/access-spec-attrs.cpp
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 %s -fsyntax-only -verify
+
+struct X {
+public __attribute__((unavailable)): // expected-error {{access specifier can only have annotation attributes}}
+ void foo();
+private __attribute__((annotate("foobar"))):
+ void bar();
+};
+
+void f(X x) {
+ x.foo();
+}