URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [lambda/] [lambda-capture-neg.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/50736
// { dg-options "-std=c++0x -pedantic-errors" }
int i;
void f();
typedef int T;
int main()
{
[i]{}; // { dg-error "non-automatic" }
[f]{}; // { dg-error "non-variable" }
[T]{}; // { dg-error "non-variable" }
}
struct A { };