6 lines
75 B
C++
6 lines
75 B
C++
int main() {
|
|
bool b = __has_trivial_copy(int);
|
|
(void) b;
|
|
return 0;
|
|
}
|