mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-13 10:36:36 +00:00
10 lines
179 B
Rust
10 lines
179 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() {}
|