2012-08-02 18:01:38 -05:00
|
|
|
// xfail-fast
|
|
|
|
// aux-build:static-methods-crate.rs
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-08-02 18:01:38 -05:00
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod static_methods_crate;
|
2012-09-05 14:32:05 -05:00
|
|
|
use static_methods_crate::read;
|
|
|
|
use readMaybeRenamed = static_methods_crate::readMaybe;
|
2012-08-02 18:01:38 -05:00
|
|
|
|
|
|
|
fn main() {
|
2012-08-27 18:26:35 -05:00
|
|
|
let result: int = read(~"5");
|
|
|
|
assert result == 5;
|
2012-08-20 14:23:37 -05:00
|
|
|
assert readMaybeRenamed(~"false") == Some(false);
|
|
|
|
assert readMaybeRenamed(~"foo") == None::<bool>;
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|