diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/google-readability-casting.c')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/google-readability-casting.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/google-readability-casting.c b/clang-tools-extra/test/clang-tidy/google-readability-casting.c index df167454316..488bcd79637 100644 --- a/clang-tools-extra/test/clang-tidy/google-readability-casting.c +++ b/clang-tools-extra/test/clang-tidy/google-readability-casting.c @@ -17,6 +17,8 @@ void f(const char *cpc) { // CHECK-MESSAGES: :[[@LINE-1]]:22: warning: redundant cast to the same type [google-readability-casting] // CHECK-FIXES: const char *cpc2 = cpc; char *pc = (char*)cpc; + typedef const char *Typedef1; + (Typedef1)cpc; } #endif |