blob: d6c1587487d44fd8a1a4ea19cb703b2df488ea90 [file] [log] [blame]
// Test that captures are not named in the closure type.
// { dg-do compile { target c++14 } }
int main()
{
int i;
auto lam = [i,j=42]{};
lam.j; // { dg-error "no member" }
lam.i; // { dg-error "no member" }
}