aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/cxx-ambig-decl-expr.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-15 21:05:01 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-15 21:05:01 +0000
commit06b7080b04ba799379469c03471558e4222921ce (patch)
treea272f0a1bd7c90531e1e30a636cdd3e9c532f334 /test/Parser/cxx-ambig-decl-expr.cpp
parentc57b0ba341c52ac9f3e6410ca4d21eb28019c901 (diff)
When we're performing tentative parsing to determine whether the
parser is looking at a declaration or an expression, use a '=' to conclude that we are parsing a declaration. This is wrong. However, our previous approach of finding a comma after the '=' is also wrong, because the ',' could be part of a template-argument-list. So, for now we're going to use the same wrong heuristic as GCC and Visual C++, because less real-world code is likely to be broken this way. I've opened PR7655 to keep track of our wrongness; note also the XFAIL'd test. Fixes <rdar://problem/8193163>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Parser/cxx-ambig-decl-expr.cpp')
-rw-r--r--test/Parser/cxx-ambig-decl-expr.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Parser/cxx-ambig-decl-expr.cpp b/test/Parser/cxx-ambig-decl-expr.cpp
new file mode 100644
index 0000000000..b5ff728b47
--- /dev/null
+++ b/test/Parser/cxx-ambig-decl-expr.cpp
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+struct X {
+ template<typename T, typename U>
+ static void f(int, int);
+};
+
+void f() {
+ void (*ptr)(int, int) = &X::f<int, int>;
+}