summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_lambdas.cpp
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-03 17:23:40 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-08 09:05:55 (GMT)
commit15cdf6f51dde9a394ffc7a398e201e59cc959111 (patch)
tree2329e25164e824e8dd2f517fccd0176418ce826e /Tests/CompileFeatures/cxx_lambdas.cpp
parenta579a0aab4e55aeb0a71dc7c1b58db3d126e1fd4 (diff)
downloadCMake-15cdf6f51dde9a394ffc7a398e201e59cc959111.zip
CMake-15cdf6f51dde9a394ffc7a398e201e59cc959111.tar.gz
CMake-15cdf6f51dde9a394ffc7a398e201e59cc959111.tar.bz2
Features: Add cxx_lambdas.
Diffstat (limited to 'Tests/CompileFeatures/cxx_lambdas.cpp')
-rw-r--r--Tests/CompileFeatures/cxx_lambdas.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/cxx_lambdas.cpp b/Tests/CompileFeatures/cxx_lambdas.cpp
new file mode 100644
index 0000000..eecaa23
--- /dev/null
+++ b/Tests/CompileFeatures/cxx_lambdas.cpp
@@ -0,0 +1,5 @@
+
+void someFunc()
+{
+ [](){}();
+}