Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
typeck
/
issue-2063-resource.rs
blob: 0b34cbb4c5ed8733163057dbbec14a9de5b7febb [
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
()
{}