mirror of https://github.com/lukechilds/cc-rs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
226 B
20 lines
226 B
10 years ago
|
extern crate gcc_test;
|
||
|
|
||
|
use gcc_test::*;
|
||
|
|
||
|
#[test]
|
||
|
fn foo_here() {
|
||
|
unsafe {
|
||
|
assert_eq!(foo(), 4);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn bar_here() {
|
||
|
unsafe {
|
||
|
assert_eq!(bar1(), 5);
|
||
|
assert_eq!(bar2(), 6);
|
||
|
}
|
||
|
}
|
||
|
|