Files
tubestation/tools/clang-tidy/test/readability-qualified-auto.cpp

7 lines
82 B
C++

typedef int *MyPtr;
MyPtr getPtr();
void foo() {
auto TdNakedPtr = getPtr();
}