mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
252 B
Rust
15 lines
252 B
Rust
// 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() {}
|