I tried action Fill struct field in the following:
struct A {
u: f64,
v: i64,
}
fn f() -> A {
let u = 5.0;
let v = todo!();
A{} // <- @action Fill struct fields.
}
And this happened:
Since (IMU) ! subtypes anything, then I would find it legit that this happened instead:
What do you think?
I tried action
Fill struct fieldin the following:And this happened:
Since (IMU)
!subtypes anything, then I would find it legit that this happened instead:What do you think?