index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
CompileFeatures
/
cxx_defaulted_functions.cpp
blob: 3b15adc8267d23447fff1cb8109e2bc356952e56 (
plain
)
1
2
3
4
5
6
7
8
9
10
struct
A
{
A
() =
default
;
};
void
someFunc
()
{
A a
;
}