summaryrefslogtreecommitdiffstats
path: root/src/doc/guide-pointers.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/guide-pointers.md')
-rw-r--r--src/doc/guide-pointers.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/doc/guide-pointers.md b/src/doc/guide-pointers.md
new file mode 100644
index 000000000..bafdb2fe0
--- /dev/null
+++ b/src/doc/guide-pointers.md
@@ -0,0 +1,7 @@
+% The Rust Pointer Guide
+
+This content has been removed, with no direct replacement. Rust only
+has two built-in pointer types now,
+[references](book/ch04-02-references-and-borrowing.html) and [raw
+pointers](book/raw-pointers.html). Older Rusts had many more pointer
+types, they’re gone now.