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
Fortran: Fix failing character pointer fcn assignment [PR105054]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
conv-tmpl2.C
blob
8a505769c3c03b40e39c0138f58d91a7a43ab861
1
// PR c++/92031 - bogus taking address of rvalue error.
2
// { dg-do compile { target c++11 } }
3
4
struct x { const int& l; };
5
6
void a(const x&) {}
7
8
template<class E>
9
void f() {
10
a(x { 0 });
11
}
12
13
void g() {
14
a(x { 0 });
15
}
16
17
void
18
test ()
19
{
20
f<int>();
21
}