2013-10-31 20:47:23 -07:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-05 18:33:58 -08:00
|
|
|
#![feature(std_misc, old_path)]
|
|
|
|
|
2014-06-08 20:12:10 -07:00
|
|
|
use std::dynamic_lib::DynamicLibrary;
|
2013-10-31 20:47:23 -07:00
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn foo() { bar(); }
|
|
|
|
|
|
|
|
pub fn foo2<T>() {
|
|
|
|
fn bar2() {
|
|
|
|
bar();
|
|
|
|
}
|
|
|
|
bar2();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
fn bar() { }
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
fn baz() { }
|
|
|
|
|
|
|
|
pub fn test() {
|
2015-03-17 13:33:26 -07:00
|
|
|
let lib = DynamicLibrary::open(None).unwrap();
|
2013-10-31 20:47:23 -07:00
|
|
|
unsafe {
|
|
|
|
assert!(lib.symbol::<int>("foo").is_ok());
|
|
|
|
assert!(lib.symbol::<int>("baz").is_err());
|
|
|
|
assert!(lib.symbol::<int>("bar").is_err());
|
|
|
|
}
|
|
|
|
}
|