aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3615.rs
blob: e5c50725ea2be5382edc016c2b64b67ec0d482d7 (plain)
1
2
3
4
5
6
7
pub trait Trait {
    pub fn nrvo(init: fn()) -> [u8; 4096] {
        let mut buf = [0; 4096];

        buf
    }
}