diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/cpp1y/lambda-init4.C')
-rw-r--r-- | gcc/testsuite/g++.dg/cpp1y/lambda-init4.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/cpp1y/lambda-init4.C b/gcc/testsuite/g++.dg/cpp1y/lambda-init4.C index 0affb31bd5..787ffc0476 100644 --- a/gcc/testsuite/g++.dg/cpp1y/lambda-init4.C +++ b/gcc/testsuite/g++.dg/cpp1y/lambda-init4.C @@ -1,5 +1,5 @@ // N3648: capture init example from paper -// { dg-do run { target c++1y } } +// { dg-do run { target c++14 } } int x = 4; auto y = [&r = x, x = x+1]()->int { |