about summary refs log tree commit diff
path: root/src/test/compile-fail/recursion_limit.rs
diff options
context:
space:
mode:
authorAlex Burka <durka42@gmail.com>2017-01-05 23:17:12 +0000
committerAlex Burka <alex@alexburka.com>2017-02-09 06:40:23 +0000
commitb4993ec8635a48d4467a69482f77c6370a9709df (patch)
tree0f8bb145f0d65b4f8794281e4bc51a2f2fb948d4 /src/test/compile-fail/recursion_limit.rs
parentc14f87e3b0823407a91a283796bf78ef83d5fe99 (diff)
downloadrust-b4993ec8635a48d4467a69482f77c6370a9709df.tar.gz
rust-b4993ec8635a48d4467a69482f77c6370a9709df.zip
suggest doubling recursion limit in more situations
Diffstat (limited to 'src/test/compile-fail/recursion_limit.rs')
-rw-r--r--src/test/compile-fail/recursion_limit.rs57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/test/compile-fail/recursion_limit.rs b/src/test/compile-fail/recursion_limit.rs
deleted file mode 100644
index 226a6d57ddb..00000000000
--- a/src/test/compile-fail/recursion_limit.rs
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-// Test that the recursion limit can be changed. In this case, we have
-// deeply nested types that will fail the `Send` check by overflow
-// when the recursion limit is set very low.
-
-#![allow(dead_code)]
-#![recursion_limit="10"]
-
-macro_rules! link {
-    ($id:ident, $t:ty) => {
-        enum $id { $id($t) }
-    }
-}
-
-link! { A, B }
-link! { B, C }
-link! { C, D }
-link! { D, E }
-link! { E, F }
-link! { F, G }
-link! { G, H }
-link! { H, I }
-link! { I, J }
-link! { J, K }
-link! { K, L }
-link! { L, M }
-link! { M, N }
-
-enum N { N(usize) }
-
-fn is_send<T:Send>() { }
-
-fn main() {
-    is_send::<A>();
-    //~^ ERROR overflow evaluating
-    //~| NOTE consider adding a `#![recursion_limit="20"]` attribute to your crate
-    //~| NOTE required because it appears within the type `A`
-    //~| NOTE required because it appears within the type `B`
-    //~| NOTE required because it appears within the type `C`
-    //~| NOTE required because it appears within the type `D`
-    //~| NOTE required because it appears within the type `E`
-    //~| NOTE required because it appears within the type `F`
-    //~| NOTE required because it appears within the type `G`
-    //~| NOTE required because it appears within the type `H`
-    //~| NOTE required because it appears within the type `I`
-    //~| NOTE required because it appears within the type `J`
-    //~| NOTE required by `is_send`
-}