Sign in
android
/
platform
/
external
/
google-fruit
/
251e883e3e52a6f706833803c9f3043dfb2c9583
/
.
/
configuration
/
bazel
/
std_is_trivially_copyable.cpp
blob: 871b793d7b687b37e96d20f01b835cd66e73e5d0 [
file
] [
log
] [
blame
]
#include
<type_traits>
int
main
()
{
bool
b
=
std
::
is_trivially_copyable
<int>
::
value
;
(
void
)
b
;
return
0
;
}