// Copyright 2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![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."; } } }