You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
328 B
8 lines
328 B
// RUN: %check_clang_tidy -expect-clang-tidy-error %s readability-isolate-declaration %t
|
|
|
|
int main(){
|
|
int a, b
|
|
// CHECK-MESSAGES: [[@LINE-1]]:3: warning: multiple declarations in a single statement reduces readability
|
|
// CHECK-MESSAGES: [[@LINE-2]]:11: error: expected ';' at end of declaration [clang-diagnostic-error]
|
|
}
|