diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-12 21:14:37 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-12 21:14:37 -0700 |
commit | 277728ac80b0d2672400f2cc803325b705ad4462 (patch) | |
tree | 77b633b7257b6cf0ab55910f85f77f69d53a1db7 /src | |
parent | a07fed3794c0f91b4c2c7cd2332163b8cf031a72 (diff) | |
download | rust-typing-the-technical-interview-277728ac80b0d2672400f2cc803325b705ad4462.tar.gz rust-typing-the-technical-interview-277728ac80b0d2672400f2cc803325b705ad4462.zip |
crank that recursion limit down
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 0c96e4e..7612805 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -#![recursion_limit="100000"] +#![recursion_limit="500"] //! [source 1](https://aphyr.com/posts/342-typing-the-technical-interview) //! [source 2](https://sdleffler.github.io/RustTypeSystemTuringComplete/) |