diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-02-18 05:51:20 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-02-18 05:51:20 +0000 |
commit | 812d8f638761284a830219e5471bac504942ee83 (patch) | |
tree | 904484c2df20175edec7d1c23cfbbf5afaf84a17 /clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp | |
parent | d9e416c0ea61c13440e99fdab86e44c6e71a8eff (diff) | |
download | bcm5719-llvm-812d8f638761284a830219e5471bac504942ee83.tar.gz bcm5719-llvm-812d8f638761284a830219e5471bac504942ee83.zip |
Unify our computation of the type of a captured reference to a
variable; it was previously duplicated, and one of the copies failed
to account for outer non-mutable lambda captures.
llvm-svn: 150872
Diffstat (limited to 'clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp')
-rw-r--r-- | clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp b/clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp index 03cbe32ef4e..e9356136c7b 100644 --- a/clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp +++ b/clang/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp @@ -17,12 +17,12 @@ void f3() { const int &irc = i; [=,&irc,&ir] { + static_assert(is_same<decltype(((r))), float const&>::value, + "should be const float&"); static_assert(is_same<decltype(x), float>::value, "should be float"); static_assert(is_same<decltype((x)), const float&>::value, "should be const float&"); static_assert(is_same<decltype(r), float&>::value, "should be float&"); - static_assert(is_same<decltype(((r))), float const&>::value, - "should be const float&"); static_assert(is_same<decltype(ir), int&>::value, "should be int&"); static_assert(is_same<decltype((ir)), int&>::value, "should be int&"); static_assert(is_same<decltype(irc), const int&>::value, |