mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 09:31:39 +00:00
11 lines
148 B
C
11 lines
148 B
C
#include <assert.h>
|
|
|
|
extern void foo();
|
|
extern unsigned bar(unsigned a, unsigned b);
|
|
|
|
int main() {
|
|
foo();
|
|
assert(bar(1, 2) == 3);
|
|
return 0;
|
|
}
|