summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/bugprone-suspicious-missing-comma.cpp
blob: de1634e11fdbd7738351bdcabee19bc14aa7f2d4 (plain)
1
2
3
4
5
6
7
8
9
const char* Cartoons[] = {
  "Bugs Bunny",
  "Homer Simpson",
  "Mickey Mouse",
  "Bart Simpson",
  "Charlie Brown"  // There is a missing comma here.
  "Fred Flintstone",
  "Popeye",
};