blob: 1d0527447ba51296833d4a44c89c12269ce88a45 [file] [log] [blame]
// check-pass
#![allow(dead_code)]
// test that autoderef of a type like this does not
// cause compiler to loop. Note that no instances
// of such a type could ever be constructed.
struct S {
x: X,
to_str: (),
}
struct X(Box<S>);
fn main() {}