summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/linkage-invalid-decl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaCXX/linkage-invalid-decl.cpp')
-rw-r--r--clang/test/SemaCXX/linkage-invalid-decl.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/linkage-invalid-decl.cpp b/clang/test/SemaCXX/linkage-invalid-decl.cpp
new file mode 100644
index 00000000000..0a991baf9d7
--- /dev/null
+++ b/clang/test/SemaCXX/linkage-invalid-decl.cpp
@@ -0,0 +1,9 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+// This invalid declaration used to call infinite recursion in linkage
+// calculation for enum as a function argument.
+inline foo(A)(enum E;
+// expected-error@-1 {{unknown type name 'foo'}}
+// expected-error@-2 {{ISO C++ forbids forward references to 'enum' types}}
+// expected-error@-3 {{expected ')'}}
+// expected-note@-4 {{to match this '('}}
OpenPOWER on IntegriCloud