diff options
author | John McCall <rjmccall@apple.com> | 2010-10-12 02:09:17 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-10-12 02:09:17 +0000 |
commit | 2cd11fefb62c580651e4269e1488381c2d6d07ad (patch) | |
tree | c89350fc393ba9ee8416ce10238cdaff36f43805 /test/CXX/expr/expr.unary/expr.unary.op/p6.cpp | |
parent | c44fe4bf2962bfcb323e93a63ba4a72d67839cde (diff) |
Progress.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CXX/expr/expr.unary/expr.unary.op/p6.cpp')
-rw-r--r-- | test/CXX/expr/expr.unary/expr.unary.op/p6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/expr/expr.unary/expr.unary.op/p6.cpp b/test/CXX/expr/expr.unary/expr.unary.op/p6.cpp index eea2c33ffe..543a86d4e3 100644 --- a/test/CXX/expr/expr.unary/expr.unary.op/p6.cpp +++ b/test/CXX/expr/expr.unary/expr.unary.op/p6.cpp @@ -31,6 +31,6 @@ namespace PR8181 { void f() { } void f(char) { } - bool b = !&f; //expected-error {{value of type '<overloaded function type>' is not contextually convertible to 'bool'}} + bool b = !&f; //expected-error {{cannot resolve overloaded function from context}} } |