aboutsummaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
Diffstat (limited to 'posts')
-rw-r--r--posts/turing_complete_type_systems.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/posts/turing_complete_type_systems.md b/posts/turing_complete_type_systems.md
index b6ec7bc..70136c8 100644
--- a/posts/turing_complete_type_systems.md
+++ b/posts/turing_complete_type_systems.md
@@ -17,6 +17,7 @@ problem](https://en.wikipedia.org/wiki/Undecidable_problem).
17Rust performs compile-time type inference. The type checker, 17Rust performs compile-time type inference. The type checker,
18in turn, compiles and infers types, I would describe it as a 18in turn, compiles and infers types, I would describe it as a
19compiler inside a compiler. It is possible that `rustc` may 19compiler inside a compiler. It is possible that `rustc` may
20never finish compiling your Rust program! 20never finish compiling your Rust program! I lied, `rustc`
21stops after a while, after hitting the recursion limit.
21 22
22I understand that this post lacks content. 23I understand that this post lacks content.