summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/constexpr-lambda13.C
blob: 962ec8db62c0e99e40428675273acb0e97167e8a (plain)
1
2
3
4
5
// { dg-do compile { target c++17 } }

auto l1 = []() constexpr constexpr { }; // { dg-error "duplicate" }
auto l2 = []() mutable mutable { }; // { dg-error "duplicate" }
auto l3 = []() static { };	    // { dg-error "static" }