2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-15 18:50:45 +08:00

constexpr-lambda6.C: Remove dg-do run.

* g++.dg/cpp1z/constexpr-lambda6.C: Remove dg-do run.

From-SVN: r239392
This commit is contained in:
Uros Bizjak 2016-08-11 23:30:35 +02:00 committed by Uros Bizjak
parent df83974966
commit a8b956c1bc
2 changed files with 4 additions and 1 deletions
gcc/testsuite

@ -1,3 +1,7 @@
2016-08-11 Uros Bizjak <ubizjak@gmail.com>
* g++.dg/cpp1z/constexpr-lambda6.C: Remove dg-do run.
2015-08-11 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/pieces-strcpy-1.c: New test.

@ -1,5 +1,4 @@
// Testcase from P0170R1
// { dg-do run }
// { dg-options -std=c++1z }
auto monoid = [](auto v) { return [=] { return v; }; };