2018-08-30 07:18:55 -05:00
|
|
|
//@ run-pass
|
2013-06-01 04:54:39 -05:00
|
|
|
//@ aux-build:reexported_static_methods.rs
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate reexported_static_methods;
|
2013-05-10 23:33:58 -05:00
|
|
|
|
2013-06-01 04:54:39 -05:00
|
|
|
use reexported_static_methods::Foo;
|
|
|
|
use reexported_static_methods::Baz;
|
|
|
|
use reexported_static_methods::Boz;
|
|
|
|
use reexported_static_methods::Bort;
|
2013-05-10 23:33:58 -05:00
|
|
|
|
|
|
|
pub fn main() {
|
2015-03-24 14:45:11 -05:00
|
|
|
assert_eq!(42_isize, Foo::foo());
|
|
|
|
assert_eq!(84_isize, Baz::bar());
|
2015-01-25 15:05:03 -06:00
|
|
|
assert!(Boz::boz(1));
|
2014-05-25 05:17:19 -05:00
|
|
|
assert_eq!("bort()".to_string(), Bort::bort());
|
2013-05-10 23:33:58 -05:00
|
|
|
}
|