This code compile and run without problem
struct A(i32);
fn ooo<T>(_t: T) {}
fn main() {
ooo(A);
}
I don't understand
- the meaning of
ooo(A)
- the type of
_t
This code compile and run without problem
struct A(i32);
fn ooo<T>(_t: T) {}
fn main() {
ooo(A);
}
I don't understand
ooo(A)
_t