auto_raw_pointer.cpp:28:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto raw_int_ptr = &integer;
  ^~~~
  auto*
auto_raw_pointer.cpp:29:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto const_raw_int_ptr = &integer;
  ^~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:30:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto& const_raw_int_ptr_ref = &integer;
  ^~~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:35:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto raw_foo_ptr = &foo;
  ^~~~
  auto*
auto_raw_pointer.cpp:36:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto const_raw_foo_ptr = &foo;
  ^~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:37:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto& const_raw_foo_ptr_ref = &foo;
  ^~~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:44:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto double_ptr_auto = &int_ptr;
  ^~~~
  auto**
auto_raw_pointer.cpp:45:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto* double_ptr_auto_ptr = &int_ptr;
  ^~~~~
  auto**
auto_raw_pointer.cpp:52:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto auto_awesome = pointer_awesomeness;
  ^~~~
  auto* const* const volatile** const*
auto_raw_pointer.cpp:54:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto& int_ptr_ref = int_ptr;
  ^~~~~
  auto*&
auto_raw_pointer.cpp:55:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto& const_int_ptr_ref = int_ptr;
  ^~~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:56:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  auto&& int_ptr_rref = static_cast<int*&&>(int_ptr);
  ^~~~~~
  auto*&&
auto_raw_pointer.cpp:57:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  const auto&& const_int_ptr_rref = static_cast<int*&&>(int_ptr);
  ^~~~~~~~~~~~
  auto* const
auto_raw_pointer.cpp:59:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  static auto static_ptr = new int;
  ^~~~~~~~~~~
  static auto*
auto_raw_pointer.cpp:62:8: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
  for (auto& it : iteratable)
       ^~~~~
       auto* const
15 warnings generated.