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