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
/
defaulted21.C
blob
312194d98767a2f54252976b970c2383b6da2528
1
// PR c++/46736
2
// { dg-do compile { target c++11 } }
3
4
struct U {
5
U();
6
private:
7
U(U const&); // { dg-message "private" }
8
};
9
10
struct X {
11
U const u;
12
X();
13
X(X&&);
14
};
15
16
X::X(X&&)=default; // { dg-message "implicitly deleted" }
17
// { dg-prune-output "within this context" }
18
19
X f() {
20
return X();
21
}