blob: c0326b8130ac34e5ab5133549fb2fa01e0bd48c8 [file] [log] [blame]
//--Make sure we can run DSA on it!
//RUN: clang %s -c -emit-llvm -o - | \
//RUN: dsaopt -dsa-bu -dsa-td -disable-output
#include <stdlib.h>
void func() {
int a = 10;
int *b = &a;
int **c = &b;
int *d = *c;
int e = *d;
}