2017-01-05 23:17:12 +00:00
|
|
|
// Test that the recursion limit can be changed and that the compiler
|
|
|
|
// suggests a fix. In this case, we have a long chain of Deref impls
|
|
|
|
// which will cause an overflow during the autoderef loop.
|
2022-03-20 19:02:18 +00:00
|
|
|
// compile-flags: -Zdeduplicate-diagnostics=yes
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![recursion_limit="10"]
|
|
|
|
|
|
|
|
macro_rules! link {
|
|
|
|
($outer:ident, $inner:ident) => {
|
|
|
|
struct $outer($inner);
|
|
|
|
|
|
|
|
impl $outer {
|
|
|
|
fn new() -> $outer {
|
|
|
|
$outer($inner::new())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::Deref for $outer {
|
|
|
|
type Target = $inner;
|
|
|
|
|
|
|
|
fn deref(&self) -> &$inner {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bottom;
|
|
|
|
impl Bottom {
|
|
|
|
fn new() -> Bottom {
|
|
|
|
Bottom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
link!(Top, A);
|
|
|
|
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, Bottom);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let t = Top::new();
|
2017-11-20 12:13:27 +00:00
|
|
|
let x: &Bottom = &t; //~ ERROR mismatched types
|
|
|
|
//~^ error recursion limit
|
2017-01-05 23:17:12 +00:00
|
|
|
}
|