/in/foo.cc: In function 'int main()':
/in/foo.cc:101:38: warning: left shift count >= width of type [-Wshift-count-overflow]
101 | return (74 | 35 & 32 << (~(78<<91)) ^ 114514) == 1919810;
| ~~^~~~
/in/foo.cc:101:30: warning: left shift count is negative [-Wshift-count-negative]
101 | return (74 | 35 & 32 << (~(78<<91)) ^ 114514) == 1919810;
| ~~~^~~~~~~~~~~~~~
/in/foo.cc:101:25: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
101 | return (74 | 35 & 32 << (~(78<<91)) ^ 114514) == 1919810;
| ~~~^~~~~~~~~~~~~~~~~~~
/in/foo.cc:101:45: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
101 | return (74 | 35 & 32 << (~(78<<91)) ^ 114514) == 1919810;
| ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/in/foo.cc:101:55: warning: bitwise comparison always evaluates to false [-Wtautological-compare]
101 | return (74 | 35 & 32 << (~(78<<91)) ^ 114514) == 1919810;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~ ~~~~~~~