Rust: Add placeholder declarations for &mut and *mut

This commit is contained in:
Tom Hvitved
2025-11-23 20:24:05 +01:00
parent b1ed72d760
commit 17e1e1713e
2 changed files with 6 additions and 2 deletions

View File

@@ -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;