auto_raw_pointer.cpp:48: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:52: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:53: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:58: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:59: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:60: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:67: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:68: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:75: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:77: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:78: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:79:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. auto&& int_ptr_rref = static_cast(int_ptr); ^~~~~~ auto*&& auto_raw_pointer.cpp:80:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. const auto&& const_int_ptr_rref = static_cast(int_ptr); ^~~~~~~~~~~~ auto* const auto_raw_pointer.cpp:82: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:85:8: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. for (auto& it : iterable) { ^~~~~ auto* const auto_raw_pointer.cpp:97:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. auto bad_ptr_to_alias = return_ptr_to_alias_with_ptr(); ^~~~ auto* auto_raw_pointer.cpp:118:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. auto bad = p; ^~~~ auto* auto_raw_pointer.cpp:138:5: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. auto bad = p; ^~~~ auto* 18 warnings generated.