about summary refs log tree commit diff
path: root/tests/ui/structs-enums/struct-order-of-eval-1.rs
blob: 25cdabcc03c3f7d039e8999bd9a71cc766ef193d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ run-pass
#![allow(dead_code)]

struct S { f0: String, f1: isize }

pub fn main() {
    let s = "Hello, world!".to_string();
    let s = S {
        f0: s.to_string(),
        ..S {
            f0: s,
            f1: 23
        }
    };
    assert_eq!(s.f0, "Hello, world!");
}