diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30907-Issue_1813.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30907-Issue_1813.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30907-Issue_1813.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30907-Issue_1813.cpp deleted file mode 100644 index d5a3cc71..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30907-Issue_1813.cpp +++ /dev/null @@ -1,29 +0,0 @@ -namespace ns1 -{ -namespace ns2 -{ - void func0() - { - functionThatTakesALambda( [&] () -> void - { - lambdaBody; - }); - functionThatTakesALambda( [&] __device__ () -> void - { - lambdaBody; - }); - functionThatTakesALambda( [&] __host__ __device__ () -> void - { - lambdaBody; - }); - functionThatTakesALambda( [&] DEVICE_LAMBDA_CONTEXT () -> void - { - lambdaBody; - }); - functionThatTakesALambda( [&] HOST_DEVICE_LAMBDA_CONTEXT () -> void - { - lambdaBody; - }); - } -} -} |