mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
344 B
Rust
14 lines
344 B
Rust
// run-pass
|
|
// aux-build:static-methods-crate.rs
|
|
|
|
extern crate static_methods_crate;
|
|
|
|
use static_methods_crate::read;
|
|
|
|
pub fn main() {
|
|
let result: isize = read("5".to_string());
|
|
assert_eq!(result, 5);
|
|
assert_eq!(read::readMaybe("false".to_string()), Some(false));
|
|
assert_eq!(read::readMaybe("foo".to_string()), None::<bool>);
|
|
}
|