1 // PR c++/85761 2 // { dg-do compile { target c++11 } } 3 4 template <typename T> 5 void out(const T& value); 6 7 struct foo { 8 void bar(); 9 }; 10 bar()11void foo::bar() 12 { 13 constexpr int COUNT = 10000; 14 auto run = []() { 15 out(COUNT); // { dg-error "9:not captured" } 16 }; 17 18 run(); 19 } 20