blob: 24a74ef7f3e18981100d8344cd509cb9fb75a936 [file]
#![feature(no_core)]
#![no_core]
fn foo<'a>(t: &'a str) -> &'a str {
t
}
fn main() {
foo("hello world");
}