mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Rust: Add placeholder declarations for &mut and *mut
This commit is contained in:
@@ -26,8 +26,10 @@ pub struct f64;
|
||||
|
||||
struct Slice<TSlice>;
|
||||
struct Array<TArray, const N: usize>;
|
||||
struct Ref<TRef>; // todo: add mut variant
|
||||
struct Ptr<TPtr>; // todo: add mut variant
|
||||
struct Ref<TRef>;
|
||||
struct RefMut<TRefMut>;
|
||||
struct Ptr<TPtr>;
|
||||
struct PtrMut<TPtrMut>;
|
||||
|
||||
// tuples
|
||||
struct Tuple0;
|
||||
|
||||
Reference in New Issue
Block a user