repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
lambda
/
lambda-const-this.C
blob
220ac911cdb886a94d95b82910bf5ac499de1a9f
1
// PR c++/60463
2
// PR c++/60755
3
// { dg-do compile { target c++11 } }
4
struct S {
5
void f();
6
void g() const {
7
[=] { f(); } (); // { dg-error "no match|qualifiers" }
8
}
9
};