mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-25 08:57:55 +00:00
ret, unreachable, param, deref
This commit is contained in:
+5
-8
@@ -1,11 +1,8 @@
|
||||
void test(void) {
|
||||
}
|
||||
|
||||
int main() {
|
||||
int x = 15;
|
||||
int y = 4;
|
||||
x = x & (~y);
|
||||
if (x > 0) {
|
||||
x = 123;
|
||||
} else {
|
||||
x = 321;
|
||||
}
|
||||
void (*f)(void) = test;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user