From a05d0a906cce0b1c8c27330a22d48fee170bc722 Mon Sep 17 00:00:00 2001 From: Simon Friis Vindum Date: Wed, 3 Dec 2025 11:56:54 +0100 Subject: [PATCH] Rust: Add change note for raw pointer type inference --- .../change-notes/2025-12-03-type-inference-raw-pointers.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 rust/ql/lib/change-notes/2025-12-03-type-inference-raw-pointers.md diff --git a/rust/ql/lib/change-notes/2025-12-03-type-inference-raw-pointers.md b/rust/ql/lib/change-notes/2025-12-03-type-inference-raw-pointers.md new file mode 100644 index 00000000000..a24f86ad897 --- /dev/null +++ b/rust/ql/lib/change-notes/2025-12-03-type-inference-raw-pointers.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Improved type inference for raw pointers (`*const` and `*mut`). This includes type inference for the raw borrow operators (`&raw const` and `&raw mut`) and dereferencing of raw pointers. \ No newline at end of file