Jakub Dupak
Jakub Dupak
Hi, I would like to ask, whether cvector and carray are consisted part of public symbols or for internal usage only. I have been playing with them in my project...
Example of situation: ```shell hyperfine "git status" ``` Hyperfine takes a command as an argument inside quotes. I managed to get full command autocomplete without quotes the way sudo does...
```rust fn trait_as_argument>(t: T) -> i32 { 0 } ``` The inner T in `Trait
```rust fn test_cast() { let i = 1; let j = i as i64; } ``` rustc says that i is i32 and we say it is i64.
This is syntax sugar with no difference in meaning. No need to have tham split in two places. @philberty agree?
```rust struct S(&'static T); struct T(&'static S); ``` ```rust ./lifetime.rs:32:19: error: failed to resolve root segment 32 | struct S(&'static T); | ^ ```
FFI gccrs -> Polonius and build of Polonius (via FFI-Polonius bindigs) with gcc build system. Cargo supports `--outdir` to copy final library to, which would be nice here, but right...