about summary refs log tree commit diff
path: root/tests/ui/associated-consts/double-elided.rs
blob: 6831b599374ad897d7472775158d3988a765d78a (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass

struct S;

impl S {
    const C: &&str = &"";
    // Now resolves to `&'static &'static str`.
}

fn main() {}