Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGen
/
2005-03-06-OffsetOfStructCrash.c
blob: 46968bb8db6474aaf86935d7a02b949dd825b630 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o -
struct
Y
{};
struct
XXX
{
struct
Y F
;
};
void
test1
()
{
(
int
)&((
struct
XXX
*)(((
void
*)
0
)))->
F
;
}
void
test2
()
{
&((
struct
XXX
*)(((
void
*)
0
)))->
F
;
}