diff options
Diffstat (limited to 'test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp')
-rw-r--r-- | test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp b/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp index 561ead1271..03cbe32ef4 100644 --- a/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp +++ b/test/CXX/expr/expr.prim/expr.prim.lambda/p18.cpp @@ -38,4 +38,8 @@ void f3() { "should be const float&"); }(); }(); + + [&i] { + static_assert(is_same<decltype((i)), int&>::value, "should be int&"); + }(); } |