about summary refs log tree commit diff
path: root/tests/ui/issues/issue-9259.rs
blob: c45288f7d65e12a664d862793820c2c50eedcf10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ run-pass
#![allow(dead_code)]

struct A<'a> {
    a: &'a [String],
    b: Option<&'a [String]>,
}

pub fn main() {
    let b: &[String] = &["foo".to_string()];
    let a = A {
        a: &["test".to_string()],
        b: Some(b),
    };
    assert_eq!(a.b.as_ref().unwrap()[0], "foo");
}