summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-return-stack-allocated-vec.rs
blob: 97fbdbf46851e91b9b57f23ffb926e04a957c401 (plain)
1
2
3
4
5
6
7
8
9
10
// Test that we cannot return a stack allocated slice

fn function(x: isize) -> &'static [isize] {
    &[x] //~ ERROR cannot return reference to temporary value
}

fn main() {
    let x = function(1);
    let y = x[0];
}