blob: 82cc98423ee9795c9e11d3c2fa9c6eec18b6f560 [file] [log] [blame]
// 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 { };