blob: ea4cbf2cedeb7fdebf22f178c8e783819768be6d [file] [log] [blame]
// build-pass (FIXME(62277): could be 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() {}