Sign in
fuchsia
/
third_party
/
rust
/
e356279bdfe6840236877b298f0c577e0f9221ff
/
.
/
tests
/
ui
/
argument-suggestions
/
issue-109831.rs
blob: 2e8ae40f63059452cd88e13fcb35334eb3d9fbf3 [
file
] [
log
] [
blame
]
struct
A
;
struct
B
;
fn
f
(
b1
:
B
,
b2
:
B
,
a2
:
C
)
{}
//~ ERROR E0412
fn
main
()
{
f
(
A
,
A
,
B
,
C
);
//~ ERROR E0425
//~^ ERROR E0061
}