Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
structs-enums
/
struct-order-of-eval-2.rs
blob: a4e0edc97c60fc897cea28534be79154f4df4117 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
struct
S
{
f0
:
String
,
f1
:
String
,
}
pub
fn
main
()
{
let
s
=
"Hello, world!"
.
to_string
();
let
s
=
S
{
f1
:
s
.
to_string
(),
f0
:
s
};
assert_eq
!(
s
.
f0
,
"Hello, world!"
);
}