summaryrefslogtreecommitdiff
path: root/clang/test/SemaCXX/inline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaCXX/inline.cpp')
-rw-r--r--clang/test/SemaCXX/inline.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/inline.cpp b/clang/test/SemaCXX/inline.cpp
new file mode 100644
index 0000000..e569300
--- /dev/null
+++ b/clang/test/SemaCXX/inline.cpp
@@ -0,0 +1,5 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+// Check that we don't allow illegal uses of inline
+// (checking C++-only constructs here)
+struct c {inline int a;}; // expected-error{{'inline' can only appear on functions}}