repo.or.cz
/
trojita.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge "Fix assert on saving settings"
[trojita.git]
/
cmake
/
FindCXXFeatures
/
cxx11-test-defaulted_functions.cxx
blob
c7ca5b894402a02193dc351bacd4d5e490f01cad
1
struct
A
{
2
int
foo
;
3
4
A
(
int
foo
):
foo
(
foo
) {}
5
A
() =
default
;
6
};
7
8
int
main
(
void
)
9
{
10
A bar
;
11
A
baz
(
10
);
12
return
0
;
13
}