sourcehut
Log in
—
Register
~mcf
/
cproc
summary
tree
log
refs
ref:
34ae0d48e9669687003c26f94e07fa00d12dd41f
cproc
/
test
/bitfield-short.c
-rw-r--r--
78 bytes
View
Log
Blame
View raw
34ae0d48
—
Michael Forney
Add tests for char/wchar_t signedness
8 months ago
1
2
3
4
5
6
7
struct
{
short
x
:
7
;
}
s
=
{.
x
=
-64
};
int
main
(
void
)
{
return
s
.
x
>
0
;
}