2016-11-22 00:08:17 +08:00
|
|
|
// RUN: %check_clang_tidy %s readability-redundant-declaration %t
|
2016-11-01 21:26:15 +08:00
|
|
|
|
|
|
|
extern int Xyz;
|
2017-02-24 17:02:44 +08:00
|
|
|
extern int Xyz; // Xyz
|
2016-11-01 21:26:15 +08:00
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: redundant 'Xyz' declaration [readability-redundant-declaration]
|
2017-02-24 17:02:44 +08:00
|
|
|
// CHECK-FIXES: {{^}}// Xyz{{$}}
|
2016-11-01 21:26:15 +08:00
|
|
|
int Xyz = 123;
|
|
|
|
|
|
|
|
extern int A;
|
|
|
|
extern int A, B;
|
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: redundant 'A' declaration
|
|
|
|
// CHECK-FIXES: {{^}}extern int A, B;{{$}}
|
|
|
|
|
|
|
|
extern int Buf[10];
|
2017-02-24 17:02:44 +08:00
|
|
|
extern int Buf[10]; // Buf[10]
|
2016-11-01 21:26:15 +08:00
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: redundant 'Buf' declaration
|
2017-02-24 17:02:44 +08:00
|
|
|
// CHECK-FIXES: {{^}}// Buf[10]{{$}}
|
2016-11-01 21:26:15 +08:00
|
|
|
|
|
|
|
static int f();
|
2017-02-24 17:02:44 +08:00
|
|
|
static int f(); // f
|
2016-11-01 21:26:15 +08:00
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: redundant 'f' declaration
|
2017-02-24 17:02:44 +08:00
|
|
|
// CHECK-FIXES: {{^}}// f{{$}}
|
2016-11-01 21:26:15 +08:00
|
|
|
static int f() {}
|
2016-11-21 22:29:53 +08:00
|
|
|
|
|
|
|
// Original check crashed for the code below.
|
|
|
|
namespace std {
|
2017-02-24 17:02:44 +08:00
|
|
|
typedef decltype(sizeof(0)) size_t;
|
2016-11-21 22:29:53 +08:00
|
|
|
}
|
2017-02-24 17:02:44 +08:00
|
|
|
void *operator new(std::size_t) __attribute__((__externally_visible__));
|
|
|
|
void *operator new[](std::size_t) __attribute__((__externally_visible__));
|
|
|
|
|
|
|
|
// Don't warn about static member definition.
|
|
|
|
struct C {
|
|
|
|
static int I;
|
|
|
|
};
|
|
|
|
int C::I;
|