blob: d075c46d8b0034d767519ec16585c2df6b1bd0d2 [file] [log] [blame]
#![crate_type="lib"]
pub fn
foo() -> i32
{ 45 }
pub fn bar() -> &'static str { "i am not a foo." }
pub mod nest {
pub fn foo() -> &'static str { "i am a foo." }
struct S;
impl S {
fn foo_method(&self) -> &'static str {
return "i am very similar to foo.";
}
}
}