blob: f6c4ed5794c918a380e6475254958ed432a8ecf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// run-pass
#![no_std]
extern crate std;
mod foo {
pub fn test() -> Option<i32> {
Some(2)
}
}
fn main() {
let a = core::option::Option::Some("foo");
a.unwrap();
foo::test().unwrap();
}
|