60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
// RUN: %check_clang_tidy %s misc-use-anonymous-namespace %t
|
|
|
|
static void f1();
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:13: warning: function 'f1' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
|
|
static int v1;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:12: warning: variable 'v1' declared 'static', move to anonymous namespace instead
|
|
|
|
namespace {
|
|
static void f2();
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:15: warning: function 'f2' declared 'static' in anonymous namespace, remove 'static'
|
|
static int v2;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:14: warning: variable 'v2' declared 'static' in anonymous namespace, remove 'static'
|
|
}
|
|
|
|
namespace a {
|
|
static void f3();
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:15: warning: function 'f3' declared 'static', move to anonymous namespace instead
|
|
static int v3;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:14: warning: variable 'v3' declared 'static', move to anonymous namespace instead
|
|
}
|
|
|
|
namespace a {
|
|
namespace {
|
|
static void f4();
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:15: warning: function 'f4' declared 'static' in anonymous namespace, remove 'static'
|
|
static int v4;
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:14: warning: variable 'v4' declared 'static' in anonymous namespace, remove 'static'
|
|
}
|
|
}
|
|
|
|
// OK
|
|
void f5();
|
|
int v5;
|
|
|
|
// OK
|
|
namespace {
|
|
void f6();
|
|
int v6;
|
|
}
|
|
|
|
// OK
|
|
namespace a {
|
|
namespace {
|
|
void f7();
|
|
int v7;
|
|
}
|
|
}
|
|
|
|
// OK
|
|
struct Foo {
|
|
static void f();
|
|
static int x;
|
|
};
|
|
|
|
// OK
|
|
void foo()
|
|
{
|
|
static int x;
|
|
}
|