aboutsummaryrefslogtreecommitdiff
path: root/configuration/bazel/std_is_trivially_copy_constructible.cpp
blob: 7cb8d5ba2019686cb00fed5375cde0cf86827021 (plain)
1
2
3
4
5
6
#include <type_traits>
int main() {
  bool b = std::is_trivially_copy_constructible<int>::value;
  (void) b;
  return 0;
}