1 // RUN: %check_clang_tidy %s cert-msc30-c %t
2 
3 extern int rand(void);
4 int nonrand();
5 
cTest()6 int cTest() {
7   int i = rand();
8   // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: rand() has limited randomness [cert-msc30-c]
9 
10   int k = nonrand();
11 
12   return 0;
13 }
14