mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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;
|
|
}
|