lint mode for int/uint in FFI does not warn about *uint, but should #3395
Labels
A-FFI
Area: Foreign function interface (FFI)
A-lints
Area: Lints (warnings about flaws in source code) such as unused_mut.
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Right now if you have an FFI function like:
you only get a warning about the variable
l
, butc
is (probably) equally broken. This actually but is in the LLVM bindings, where we translatedunsigned *
to*uint
.The text was updated successfully, but these errors were encountered: