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
Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
lambda-generic-conv3.C
blob
8ec6a2092d7515cececc390ae1812817b7103116
1
// PR c++/70942
2
// { dg-do compile { target c++14 } }
3
4
int main()
5
{
6
int x = 0;
7
[](auto&& xv){
8
static_cast<decltype(xv)>(xv) = 1;
9
}(x);
10
}