Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
bare-struct-body.rs
blob: a557e861deeef2c629e182a5512da6ec4158bdf8 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
{
val
:
(),
}
fn
foo
()
->
Foo
{
//~ ERROR struct literal body without path
val
:
(),
}
fn
main
()
{
let
x
=
foo
();
x
.
val
==
42
;
//~ ERROR mismatched types
let
x
=
{
//~ ERROR struct literal body without path
val
:
(),
};
}