7 lines
123 B
C++
7 lines
123 B
C++
#include <type_traits>
|
|
int main() {
|
|
bool b = std::is_trivially_copy_constructible<int>::value;
|
|
(void) b;
|
|
return 0;
|
|
}
|