OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PR c++/43790
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
lambda
/
lambda-ice1.C
1
// PR c++/43790
2
// { dg-options "-std=c++0x" }
3
4
struct A
5
{
6
int f();
7
};
8
9
int main()
10
{
11
A a;
12
auto l = [] () { return a.f(); }; // { dg-error "not captured|return" }
13
}