blob: 9c20a3b2d6426b8024ada035016431259663ec08 [file] [log] [blame]
fn main() {
let string = no_dangle();
}
// ANCHOR: here
fn no_dangle() -> String {
let s = String::from("hello");
s
}
// ANCHOR_END: here