1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-21 00:32:23 +00:00
llvm-6502/test/CFrontend/2005-03-06-OffsetOfStructCrash.c
2005-03-06 19:40:19 +00:00

15 lines
188 B
C

// RUN: %llvmgcc %s -S -o -
struct Y {};
struct XXX {
struct Y F;
};
void test1() {
(int)&((struct XXX*)(((void *)0)))->F;
}
void test2() {
&((struct XXX*)(((void *)0)))->F;
}