Commit 8d05ff8a authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3973 see if intel inspector can find uninitialized variable references refs[t:3973]

git-svn-id: file:///svn/toku/tokudb@35055 c7de825b-a66e-492c-adef-691d508d4ae1
parent 88323328
#include <stdio.h>
#include <stdlib.h>
static void foo(int i) {
printf("%d\n", i);
}
int main(void) {
int i;
if (0)
i = 42;
foo(i);
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment