rust/tests/ui/cross-crate/reexported-static-methods-cross-crate.rs

17 lines
416 B
Rust
Raw Normal View History

//@ run-pass
//@ aux-build:reexported_static_methods.rs
extern crate reexported_static_methods;
2013-05-11 04:33:58 +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() {
assert_eq!(42_isize, Foo::foo());
assert_eq!(84_isize, Baz::bar());
2015-01-25 21:05:03 +00:00
assert!(Boz::boz(1));
assert_eq!("bort()".to_string(), Bort::bort());
2013-05-11 04:33:58 +00:00
}