repo.or.cz
/
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 PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr48453.C
blob
b0c3da51d6bd3b4bdd015237e1df7c7345403395
1
// PR c++/48453, DR 1287
2
// { dg-do compile { target c++11 } }
3
4
template<class T>
5
T&& create();
6
7
template<class T, class Arg>
8
void test() {
9
T t(create<Arg>());
10
(void) t;
11
}
12
13
template<class T>
14
struct To {
15
explicit operator T();
16
};
17
18
int main()
19
{
20
test<int&, To<int&>>();
21
test<int&&, To<int&&>>();
22
}