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