summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/user-header.h
blob: f03982ce73b421ea21cccd12239ba6a0bbec3e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef USER_HEADER_H
#define USER_HEADER_H

#define USER_MACRO(m) int m = 0

namespace USER_NS {
class object {
  int member;
};

float global;

void function() {
}
}

#endif // USER_HEADER_H
OpenPOWER on IntegriCloud