cmake FRUIT_HAS_STD_IS_TRIVIALLY_COPY_CONSTRUCTIBLE examples

google/fruit configuration/CMakeLists.txt :88

CHECK_CXX_SOURCE_COMPILES("
#include <type_traits>
int main() {
  bool b = std::is_trivially_copy_constructible<int>::value;
  (void) b;
  return 0;
}
"
FRUIT_HAS_STD_IS_TRIVIALLY_COPY_CONSTRUCTIBLE)