aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-lambda-N2927.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cxx11/c++11-test-lambda-N2927.cpp')
-rw-r--r--cxx11/c++11-test-lambda-N2927.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/cxx11/c++11-test-lambda-N2927.cpp b/cxx11/c++11-test-lambda-N2927.cpp
new file mode 100644
index 0000000..b86ad17
--- /dev/null
+++ b/cxx11/c++11-test-lambda-N2927.cpp
@@ -0,0 +1,5 @@
+int main()
+{
+ int ret = 0;
+ return ([&ret]() -> int { return ret; })();
+}