mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
180 B
Rust
10 lines
180 B
Rust
//@ aux-build: alias.rs
|
|
// regression test for 108160
|
|
|
|
extern crate alias;
|
|
|
|
use alias::Wrapper;
|
|
struct Rec(Wrapper<Rec>); //~ ERROR recursive type `Rec` has infinite
|
|
|
|
fn main() {}
|