about summary refs log tree commit diff homepage
path: root/test/Feature/NonSizedGlobals.c
blob: b98f7bf1e8c5e69cc38ccc19840a66d472b829f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgcc %s -emit-llvm -g -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --exit-on-error %t1.bc

struct X;
extern struct X Y;
void *ptr = &Y;

int main()
{
	return 0;
}