Sign in
ara-mdk
/
platform
/
frameworks
/
compile
/
libbcc
/
2cb9d2c8f43c61ecfacc3f85a56cd558dde7514c
/
.
/
tests
/
data
/
src
/
b2071670.c
blob: 311bc4f49c24949a4486b986de54b02428bf3c90 [
file
] [
log
] [
blame
]
// See http://b/2071670
int
main
()
{
float
f
=
10.0f
;
float
*
floatPointer
=
&
f
;
// The following line used to incorrectly error: "Incompatible pointer or array types"
int
*
buffer
=
(
int
*)
floatPointer
;
return
*
buffer
;
}