mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
187 B
Rust
11 lines
187 B
Rust
use std::marker;
|
|
|
|
enum E1 { V1(E2<E1>), }
|
|
enum E2<T> { V2(E2<E1>, marker::PhantomData<T>), }
|
|
//~^ ERROR recursive type `E2` has infinite size
|
|
|
|
impl E1 { fn foo(&self) {} }
|
|
|
|
fn main() {
|
|
}
|