2018-04-23 08:15:15 +08:00
|
|
|
// RUN: %check_clang_tidy %s readability-identifier-naming %t \
|
|
|
|
// RUN: -config='{CheckOptions: \
|
|
|
|
// RUN: [{key: readability-identifier-naming.ObjcIvarPrefix, value: '_'}]}' \
|
|
|
|
// RUN: --
|
|
|
|
|
2018-04-23 09:05:02 +08:00
|
|
|
@interface Foo {
|
2018-04-23 08:15:15 +08:00
|
|
|
int _bar;
|
|
|
|
int barWithoutPrefix;
|
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:9: warning: invalid case style for objc ivar 'barWithoutPrefix' [readability-identifier-naming]
|
|
|
|
// CHECK-FIXES: int _barWithoutPrefix;
|
|
|
|
}
|
2018-04-23 09:05:02 +08:00
|
|
|
@end
|