diff options
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, |