blob: b0fe22bc33269fde9087aba3bbadbc2c4f023be2 [file] [log] [blame]
// run-pass
// We used to have a __rust_abi shim that resulted in duplicated symbols
// whenever the item path wasn't enough to disambiguate between them.
fn main() {
let a = {
extern fn good() -> i32 { return 0; }
good as extern fn() -> i32
};
let b = {
extern fn good() -> i32 { return 5; }
good as extern fn() -> i32
};
assert!(a != b);
assert_eq!((a(), b()), (0, 5));
}